namespace Admin.NET.Application; /// /// 业务类型输出参数 /// public class WmsBaseBusinessTypeOutput { /// /// 主键Id /// public long? Id { get; set; } /// /// 业务类型编号 /// public string BusinessTypeCode { get; set; } /// /// 业务类型名称 /// public string BusinessTypeName { get; set; } /// /// 业务类型值 /// public int BusinessTypeValue { get; set; } /// /// 移动类型 /// public Admin.NET.Application.MoveTypeEnum MoveType { get; set; } /// /// 移动类型名称 /// public string MoveTypeName { get; set; } /// /// 移动类型编号 /// public string MoveTypeCode { get; set; } /// /// 序号 /// public int? Seq { 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 Admin.NET.Application.UpDownShelvesTypeEnum? UpDownShelvesType { get; set; } /// /// 上下架类型名称 /// public string UpDownShelvesTypeName { get; set; } /// /// 是否系统参数 /// public bool? IsSystemParameter { get; set; } /// /// 下架单据是否自动完成 /// [SugarColumn(ColumnName = "DownShelvesIsAutoFinish", ColumnDescription = "下架单据是否自动完成")] public bool? DownShelvesIsAutoFinish { get; set; } }