wangxinhui
2025-10-26 733c975cd8647f6d006736f1863bad731e32e6fb
ÏîÄ¿´úÂë/WMS/WMSServices/WIDESEA_Model/Models/Basic/Dt_CustomerInfo.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,53 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.DB.Models;
namespace WIDESEA_Model.Models
{
    /// <summary>
    /// å®¢æˆ·ä¿¡æ¯
    /// </summary>
    [SugarTable(nameof(Dt_CustomerInfo), "客户信息")]
    public class Dt_CustomerInfo : BaseEntity
    {
        /// <summary>
        /// ä¸»é”®
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
        /// <summary>
        /// å®¢æˆ·ç¼–码
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "客户编码")]
        public string CustomerCode { get; set; }
        /// <summary>
        /// å®¢æˆ·å…¨ç§°
        /// </summary>
        [SugarColumn(IsNullable = false, Length = 200, ColumnDescription = "客户全称")]
        public string CustomerName { get; set; }
        /// <summary>
        /// å®¢æˆ·ç®€ç§°
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "客户简称")]
        public string ShortName { get; set; }
        /// <summary>
        /// çŠ¶æ€
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "状态")]
        public int Status { get; set; }
        /// <summary>
        /// å‡ºåº“规则
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "出库规则")]
        public int OutRule { get; set; }
    }
}