11
啊鑫
2024-12-18 6fd758e19542fe3879ac182ce30c0cd39af87237
MES.Service/Modes/MesDepots.cs
@@ -3,7 +3,6 @@
namespace MES.Service.Modes;
/// <summary>
///     仓库信息
/// </summary>
[SugarTable("MES_DEPOTS")]
public class MesDepots
@@ -192,17 +191,40 @@
    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; }
}