namespace Yw.Application { /// /// 添加附件 /// public class AddSysAttachFileInput { /// /// 附加类型 /// [Required] public string AttachType { get; set; } /// /// 附加id /// [Required, Range(1, long.MaxValue, ErrorMessage = "AttachID 必须大于0")] public long AttachID { get; set; } /// /// 组名称 /// public string GroupName { get; set; } /// /// 文件名称 /// public string FileName { get; set; } /// /// 文件格式 /// [Required] public eFileFormat FileFormat { get; set; } /// /// 说明 /// public string Description { get; set; } } }