| | |
| | | public decimal? FStockOrgId { get; set; } |
| | | |
| | | } |
| | | |
| | | [SugarTable("ERP_BOM")] |
| | | public class ErpBOM |
| | | { |
| | | [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)] |
| | | public Guid ID { get; set; } |
| | | /// <summary> |
| | | /// 默认值: (newid()) |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "ItemProperty")] |
| | | public string? ItemProperty { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "ItemId")] |
| | | public int? ItemId { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "ItemName")] |
| | | public string? ItemName { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "ChildItemId")] |
| | | public int? ChildItemId { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "ChildItemName")] |
| | | public string? ChildItemName { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "Numerator")] |
| | | public decimal? Numerator { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "Denominator")] |
| | | public decimal? Denominator { get; set; } |
| | | |
| | | } |