| | |
| | | using SqlSugar; |
| | | |
| | | namespace NewPdaSqlServer.entity |
| | | { |
| | | namespace NewPdaSqlServer.entity; |
| | | |
| | | /// <summary> |
| | | /// 物料入库条码明细 |
| | | ///</summary> |
| | |
| | | public class MesInvItemInCDetails |
| | | { |
| | | /// <summary> |
| | | /// |
| | | /// 默认值: (newid()) |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)] |
| | |
| | | [SugarColumn(ColumnName = "ITEM_ID")] |
| | | public long? ItemId { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "SUPP_ID")] |
| | | public string? SuppId { get; set; } |
| | | [SugarColumn(ColumnName = "SUPP_ID")] public string? SuppId { get; set; } |
| | | |
| | | |
| | | // 添加的字段,并且它们不属于数据库表 |
| | |
| | | [SugarColumn(IsIgnore = true)] public string? ItemUnit { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] public decimal? SumQuantity { get; set; } |
| | | } |
| | | } |