| | |
| | | namespace MES.Service.Modes; |
| | | |
| | | /// <summary> |
| | | /// 仓库信息 |
| | | /// </summary> |
| | | [SugarTable("MES_DEPOTS")] |
| | | public class MesDepots |
| | |
| | | public bool? CheckStatus { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 使用組織 |
| | | /// 创建组织 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "Fumbrella")] |
| | | public string? Fumbrella { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 使用组织 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "FSubsidiary")] |
| | | public string? FSubsidiary { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 創建組織 |
| | | /// 供应商 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "Fumbrella")] |
| | | public string? Fumbrella { get; set; } |
| | | [SugarColumn(ColumnName = "SUPPLIER_ID")] |
| | | public string? SupplierId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 客户 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "Client_Id")] |
| | | public string? ClientId { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 部门 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "department")] |
| | | public string? Department { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 联系电话 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "Phone")] |
| | | public string? Phone { get; set; } |
| | | |
| | | [SugarColumn(IsIgnore = true)] public string? Type { get; set; } |
| | | } |