namespace Admin.NET.Application; /// /// 批次属性规则明细输出参数 /// public class WmsBatchRuleDetailOutput { /// /// 主键Id /// public long? Id { get; set; } /// /// 规则编号 /// public string RuleCode { get; set; } /// /// 规则名称 /// public string RuleName { get; set; } /// /// 批次规则 /// public Admin.NET.Application.BatchRuleEnum BatchRuleType { get; set; } /// /// 批次标签 /// public string BatchTag { get; set; } /// /// 属性格式 /// public Admin.NET.Application.AttrForamtEnum AttrForamt { get; set; } /// /// 属性选项 /// public Admin.NET.Application.AttrOptionEnum? AttrOption { get; set; } /// /// 输入控制 /// public Admin.NET.Application.InputControlEnum InputControl { get; set; } /// /// 优先级 /// public Admin.NET.Application.PriorityEnum? Priority { get; set; } /// /// RF标签 /// public string RFTag { get; set; } /// /// RF显示 /// public bool? RFShow { get; set; } /// /// 关键属性 /// public string KeyAttr { get; set; } /// /// 规则描述 /// public string RuleDesc { get; set; } /// /// 是否禁用 /// public bool IsDisabled { get; set; } /// /// 创建时间 /// public DateTime? CreateTime { get; set; } /// /// 修改时间 /// public DateTime? UpdateTime { get; set; } /// /// 创建人Id /// public long? CreateUserId { get; set; } /// /// 创建人 /// public string CreateUserName { get; set; } /// /// 修改人Id /// public long? UpdateUserId { get; set; } /// /// 修改人 /// public string UpdateUserName { get; set; } /// /// 软删除 /// public bool IsDelete { get; set; } } public class WmsBatchRuleDetailOutputGroup { public string RuleCode { get; set; } public string RuleName { get; set; } public List WmsBatchRuleDetailOutputsList { get; set; } }