| | |
| | | /// <summary> |
| | | /// 主键ID |
| | | /// </summary> |
| | | [SugarColumn(IsPrimaryKey = true, IsNullable = false, |
| | | ColumnDataType = "NUMBER(20)")] |
| | | [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)] |
| | | public decimal Id { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 创建人 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 30, ColumnDataType = "VARCHAR2")] |
| | | public string CreateBy { get; set; } |
| | | [SugarColumn(ColumnName = "CREATE_BY")] |
| | | public string? CreateBy { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 创建时间 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDataType = "DATE")] |
| | | [SugarColumn(ColumnName = "CREATE_DATE")] |
| | | public DateTime? CreateDate { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 任务号 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDataType = "VARCHAR2")] |
| | | public string TaskCode { get; set; } |
| | | [SugarColumn(ColumnName = "TASKCODE")] |
| | | public string? TaskCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 任务下发类型 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDataType = "VARCHAR2")] |
| | | public string TaskType { get; set; } |
| | | [SugarColumn(ColumnName = "TASKTYPE")] |
| | | public string? TaskType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 托盘 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, Length = 50, ColumnDataType = "VARCHAR2")] |
| | | public string PalletCode { get; set; } |
| | | [SugarColumn(ColumnName = "PALLETCODE")] |
| | | public string? PalletCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 货物类型 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDataType = "NUMBER(20)")] |
| | | [SugarColumn(ColumnName = "WIDTHTYPE")] |
| | | public decimal? WidthType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 物料名称 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 100, ColumnDataType = "VARCHAR2")] |
| | | public string MaterialName { get; set; } |
| | | [SugarColumn(ColumnName = "MATERIALNAME")] |
| | | public string? MaterialName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 物料编码 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDataType = "VARCHAR2")] |
| | | public string MaterialCode { get; set; } |
| | | [SugarColumn(ColumnName = "MATERIALCODE")] |
| | | public string? MaterialCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 批号 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDataType = "VARCHAR2")] |
| | | public string BatchNo { get; set; } |
| | | [SugarColumn(ColumnName = "BATCHNO")] |
| | | public string? BatchNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 数量 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDataType = "NUMBER(20)")] |
| | | [SugarColumn(ColumnName = "QUANTITY")] |
| | | public decimal? Quantity { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 任务下发接收数据 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDataType = "CLOB")] |
| | | public string WarehousingJson { get; set; } |
| | | [SugarColumn(ColumnName = "WAREHOUSINGJSON")] |
| | | public string? WarehousingJson { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 工位点 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDataType = "VARCHAR2")] |
| | | public string Station { get; set; } |
| | | [SugarColumn(ColumnName = "STATION")] |
| | | public string? Station { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 任务上报类型 |
| | | /// 200代表成功500代表失败 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDataType = "VARCHAR2")] |
| | | public string TaskReporting { get; set; } |
| | | [SugarColumn(ColumnName = "CODE")] |
| | | public string? Code { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 库位 |
| | | /// 消息内容 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 20, ColumnDataType = "VARCHAR2")] |
| | | public string LocCode { get; set; } |
| | | [SugarColumn(ColumnName = "JSON_MESSAGE")] |
| | | public string? JsonMessage { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 异常代码 |
| | | /// 反馈结果补充说明 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDataType = "VARCHAR2")] |
| | | public string ErrorCode { get; set; } |
| | | [SugarColumn(ColumnName = "CODE_MESSAGE")] |
| | | public string? CodeMessage { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 异常描述 |
| | | /// 补充 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 200, ColumnDataType = "VARCHAR2")] |
| | | public string ErrorMessage { get; set; } |
| | | [SugarColumn(ColumnName = "DATA")] |
| | | public string? Data { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 任务上报接收数据 |
| | | /// 库位编码 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDataType = "CLOB")] |
| | | public string MissionAccomplishedJson { get; set; } |
| | | [SugarColumn(ColumnName = "LOCCODE")] |
| | | public string? LocCode { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 业务类型 |
| | | /// 库位中文名称 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, Length = 50, ColumnDataType = "VARCHAR2")] |
| | | public string BusinessType { get; set; } |
| | | [SugarColumn(ColumnName = "LOCCODECHINESE")] |
| | | public string? LocCodeChinese { get; set; } |
| | | } |