| | |
| | | public class MesInvItemStocks |
| | | { |
| | | /// <summary> |
| | | /// SEQ_ME_ID |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "ID", OracleSequenceName = "SEQ_ME_ID", |
| | | IsPrimaryKey = true)] |
| | | [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)] |
| | | public decimal Id { get; set; } |
| | | |
| | | /// <summary> |
| | |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "LINE_K3ID")] |
| | | public decimal? LineK3id { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 物料id |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "ITEM_ID")] |
| | | public decimal? ItemId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 组织 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "ORGID")] |
| | | public string? Orgid { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 单位 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "ITEM_UNIT")] |
| | | public string? ItemUnit { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 计划跟踪号 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "MTONO")] |
| | | public string? Mtono { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 批号 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "LOT")] |
| | | public string? Lot { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 销售订单号 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "SALE_ORDER_NO")] |
| | | public string? SaleOrderNo { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string? ItemName{ get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string? ItemModel { get; set; } |
| | | } |