using SqlSugar; using System; namespace Aucma.Scada.Model.domain { [SugarTable("REAL_TASKINFO")] public class RealTaskInfo { /// /// 主键标识 /// [SugarColumn(ColumnName = "OBJID", IsPrimaryKey = true, IsIdentity = true, OracleSequenceName = "SEQ_REAL_TASK_INFO")] public int objId { get; set; } /// /// 任务编号 /// [SugarColumn(ColumnName = "TASK_CODE")] public string taskCode { get; set; } /// /// 任务类型:1-入库;2-出库 /// [SugarColumn(ColumnName = "TASK_TYPE")] public int taskType { get; set; } /// /// 任务状态:1-待执行;2-执行中;3-完成 /// [SugarColumn(ColumnName = "TASK_STATUS")] public int taskStatus { get; set; } /// /// 任务形式:0-自动;1-手动 /// [SugarColumn(ColumnName = "TASK_MODEL")] public int taskModel { get; set; } /// /// 计划编号 /// [SugarColumn(ColumnName = "PLAN_CODE")] public string planCode { get; set; } /// /// 物料编号 /// [SugarColumn(ColumnName = "MATERIAL_CODE")] public string materialCode { get; set; } /// /// 物料类型 /// [SugarColumn(ColumnName = "MATERIAL_Type")] public string materialType { get; set; } /// /// 货道编号 /// [SugarColumn(ColumnName = "SPACE_CODE")] public string spaceCode { get; set; } /// /// 货道名称 /// [SugarColumn(ColumnName = "SPACE_NAME")] public string spaceName { get; set; } /// /// 计划数量 /// [SugarColumn(ColumnName = "PLAN_AMOUNT")] public int planAmount { get; set; } /// /// 完成数量 /// [SugarColumn(ColumnName = "COMPLETE_AMOUNT")] public int completeAmount { get; set; } /// /// 开始时间 /// [SugarColumn(ColumnName = "BEGIN_TIME")] public DateTime? beginTime { get; set; } /// /// 结束时间 /// [SugarColumn(ColumnName = "END_TIME")] public DateTime? endTime { get; set; } /// /// 是否标识 /// [SugarColumn(ColumnName = "IS_FLAG")] public int isFlag { get; set; } /// /// 仓库编号 /// [SugarColumn(ColumnName = "STORE_CODE")] public string storeCode { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "CREATED_TIME")] public DateTime? createTime { get; set; } } }