| | |
| | | /// 已入库数 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "rk_qty")] |
| | | public int? RkQty { get; set; } |
| | | public decimal? RkQty { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 已扫数量 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "tl_qty")] |
| | | public int? TlQty { get; set; } |
| | | public decimal? TlQty { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 物料ID |
| | |
| | | /// 物料投料单ID(发料扫码使用) |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "item_dabid")] |
| | | public int? ItemDabid { get; set; } |
| | | public Guid? ItemDabid { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 应该是到货明细表的guid |
| | |
| | | [SugarColumn(ColumnName = "qt_out_id")] |
| | | public Guid? QtOutId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 仓库id |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "depot_id")] |
| | | public string? DepotId { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] public string? ItemName { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] public string? ItemModel { get; set; } |