| | |
| | | /// 最低库存 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "LOWLIMIT")] |
| | | public decimal? Lowlimit { get; set; } |
| | | public double? Lowlimit { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 最大库存 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "HIGHLIMIT")] |
| | | public decimal? Highlimit { get; set; } |
| | | public double? Highlimit { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 最小包装数 |
| | |
| | | [SugarColumn(ColumnName = "MATERIAL_PROPERTI")] |
| | | public string? MaterialProperti { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "PRODUCE_UNIT")] |
| | | public string? ProduceUnit { get; set; } |
| | | |
| | | [SugarColumn(ColumnName = "SUBCON_UNIT")] |
| | | public string? SubconUnit { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] public string? Type { get; set; } |
| | | } |