1
dengjunjie
2025-01-10 5ee4d66f4fef38f9d7ba38d8c3cfae7f7fc082d3
´úÂë¹ÜÀí/WMS/WIDESEA_WMSServer/WIDESEA_Model/Models/Basic/Dt_SupplierInfo.cs
@@ -8,39 +8,75 @@
namespace WIDESEA_Model.Models
{
    /// <summary>
    /// ä¾›åº”商信息
    /// </summary>
    [SugarTable(nameof(Dt_SupplierInfo), "供应商信息")]
    public class Dt_SupplierInfo : BaseEntity
    {
        /// <summary>
        /// ä¸»é”®
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
        /// <summary>
        /// ä¾›åº”商编码
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "供应商编码")]
        public string SupplierCode { get; set; }
        /// <summary>
        /// ä¾›åº”商名称
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "供应商名称")]
        public string SupplierName { get; set; }
        /// <summary>
        /// ä¾›åº”商简称
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "供应商简称")]
        public string SupplierShortName { get; set; }
        /// <summary>
        /// è”系人
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "联系人")]
        public string Contacts { get; set; }
        /// <summary>
        /// è”系电话
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "联系电话")]
        public string ContactNumber { get; set; }
        /// <summary>
        /// è”系地址
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "联系地址")]
        public string ContactAddress { get; set; }
        /// <summary>
        /// ç”µå­é‚®ç®±
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "电子邮箱")]
        public string Email { get; set; }
        /// <summary>
        /// æè¿°
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 200, ColumnDescription = "描述")]
        public string Description { get; set; }
        /// <summary>
        /// åº“存组织
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "库存组织")]
        public string InvOrgId { get; set; }
        /// <summary>
        /// çŠ¶æ€
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "状态")]
        public int Status { get; set; }
    }