| | |
| | | public string? MaterialProperti { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 自定义字段1 |
| | | /// 创建组织 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "REMARK1")] |
| | | public string? Remark1 { get; set; } |
| | | [SugarColumn(ColumnName = "CREATE_ORG")] |
| | | public decimal? CreateOrg { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 自定义字段2 |
| | | /// 使用组织 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "REMARK2")] |
| | | public string? Remark2 { get; set; } |
| | | [SugarColumn(ColumnName = "USE_ORG")] |
| | | public decimal? UseOrg { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 自定义字段3 |
| | | /// 上级部门 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "REMARK3")] |
| | | public string? Remark3 { get; set; } |
| | | [SugarColumn(ColumnName = "PARENT_ID")] |
| | | public decimal? ParentId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 自定义字段4 |