| | |
| | | /// <summary> |
| | | /// 物料名称 |
| | | /// </summary> |
| | | // [SugarColumn(ColumnName = "ITEM_NAME")] |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string? ItemName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 物料规格 |
| | | /// </summary> |
| | | // [SugarColumn(ColumnName = "ITEM_SPEC")] |
| | | [SugarColumn(IsIgnore = true)] |
| | | public string? ItemSpec { get; set; } |
| | | |
| | |
| | | /// <summary> |
| | | /// SEQ_BASEINFO_ID |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "ID", OracleSequenceName = "SEQ_BASEINFO_ID", |
| | | IsPrimaryKey = true)] |
| | | [SugarColumn(ColumnName = "ID", OracleSequenceName = "SEQ_BASEINFO_ID",IsPrimaryKey = true)] |
| | | public decimal Id { get; set; } |
| | | |
| | | /// <summary> |