| | |
| | | public DateTime? CheckDate { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 入库单对应的申请单号(没有申请流程的就为空) |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "TASK_NO")] |
| | | public string? TaskNo { get; set; } |
| | |
| | | public string? IqcReleaseNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 到货单号/其它入库单号 |
| | | /// 入库单的相关单号(生产相关存 指令单号 -1,采购相关的存到货单号) |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "CBILL_NO")] |
| | | public string? CbillNo { get; set; } |
| | |
| | | [SugarColumn(ColumnName = "ReceiveOrgId")] |
| | | public string? ReceiveOrgId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 入库单的相关单号(生产相关存 指令单号 -1,采购相关的存到货单号) |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "work_no")] |
| | | public string? WorkNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 入库类别(事务类型名称) |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "in_type")] |
| | | public string? InType { get; set; } |
| | | |
| | | |
| | | //在数据库查询时忽略这个字段 |
| | | [SugarColumn(IsIgnore = true)] public string? DepotName { get; set; } |