You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
637 B
C#

8 months ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Sys.Dtos
8 months ago
{
/// <summary>
/// 系统附件请求实体
/// </summary>
public class SysFileReq
{
/// <summary>
/// 关联业务id
/// </summary>
public long LinkId { get; set; }
/// <summary>
/// 附件类型id
/// </summary>
public string TypeCode { get; set; }
/// <summary>
/// 附件类型
/// </summary>
public string TypeName { get; set; }
}
}