using System; using System.Collections.Generic; using System.Linq; using AUCMA.STORE.Entity.Enums; using SqlSugar; namespace AUCMA.STORE.Entity.DAO { /// /// 出入库任务记录 /// [SugarTable("RECORD_TASK")] public class RecordTask { public RecordTask() { } public RecordTask(string taskCode) { this.taskCode = taskCode; } /// /// 主键 /// [SugarColumn(ColumnName="OBJID" ,IsPrimaryKey = true )] public string objid { get; set; } /// /// 任务编号 /// [SugarColumn(ColumnName="TASK_CODE" )] public string taskCode { get; set; } /// /// 箱体编码 /// [SugarColumn(ColumnName="BOX_CODE" )] public string boxCode { get; set; } /// /// 门体/物料编码 /// [SugarColumn(ColumnName="MATERIAL_CODE" )] public string materialCode { get; set; } /// /// 物料类型 /// [SugarColumn(ColumnName="MATERIAL_TYPE" )] public string materialType { get; set; } /// /// 仓库编码 /// [SugarColumn(ColumnName="STORE_CODE" )] public string storeCode { get; set; } /// /// 库位编码 /// [SugarColumn(ColumnName="LOCATION_CODE" )] public string locationCode { get; set; } /// /// 库位区域 /// [SugarColumn(ColumnName="LOCATION_AREA" )] public LocationArea locationArea { get; set; } /// /// 操作类型 /// [SugarColumn(ColumnName="OPERATION_TYPE" )] public OperationType operationType { get; set; } /// /// 任务类型 /// [SugarColumn(ColumnName="TASK_TYPE" )] public TaskType taskType { get; set; } /// /// 任务状态 /// [SugarColumn(ColumnName="TASK_STATUS" )] public TaskStatus taskStatus { get; set; } /// /// 返回标识 /// [SugarColumn(ColumnName="RETURN_FLAG" )] public string returnFlag { get; set; } /// /// 开始时间 /// [SugarColumn(ColumnName="BEGIN_TIME" )] public DateTime? beginTime { get; set; } /// /// 结束时间 /// [SugarColumn(ColumnName="END_TIME" )] public DateTime? endTime { get; set; } /// /// 记录时间 /// [SugarColumn(ColumnName="RECORD_TIME" )] public DateTime? recordTime { get; set; } } }