| | |
| | | public string? Fseller { 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 = "DATA_TYPE")] |
| | | public string? DataType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 自定义字段4 |