| | |
| | | public string? SuppSname { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 接口字段调整:标准版接口新增 ERP单据状态 字段。 |
| | | /// </summary> |
| | | /// <remarks> |
| | | /// 修改人:<池南骏> |
| | | /// 修改日期:<2024-12-28> |
| | | /// 修改说明: |
| | | /// - 原代码:空 |
| | | /// - 修改后: |
| | | ///[SugarColumn(ColumnName = "FDOCUMENTSTATUS")] |
| | | ///public string? FDOCUMENTSTATUS { get; set; } |
| | | /// </remarks> |
| | | /// <summary> |
| | | /// ERP单据状态 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "FDOCUMENTSTATUS")] |
| | | public string? FDOCUMENTSTATUS { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 地区 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "LAND1")] |
| | |
| | | public string? Fforbidstatus { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 使用组织 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "CREATE_ORG")] |
| | | public decimal? CreateOrg { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 创建组织 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "CREATE_ORG")] |
| | | public string? CreateOrg { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 使用组织 |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "USE_ORG")] |
| | | public decimal? UseOrg { get; set; } |
| | | public string? UseOrg { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 自定义字段3 |
| | |
| | | [SugarColumn(ColumnName = "REMARK5")] |
| | | public string? Remark5 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 同步SRM 001=是,002=否 |
| | | ///</summary> |
| | | [SugarColumn(ColumnName = "PRIVATE_DESC_SEG")] |
| | | public string? PrivateDescSeg { get; set; } |
| | | |
| | | /// <summary> |
| | | /// Z=暂存,A=创建,B=审核中,C=已审核,D=重新审核 |
| | | ///</summary> |
| | | [SugarColumn(ColumnName="DOCUMENT_STATUS" )] |
| | | public string? DocumentStatus { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] public string? Type { get; set; } |
| | | } |