wangxinhui
2025-10-26 733c975cd8647f6d006736f1863bad731e32e6fb
ÏîÄ¿´úÂë/WMS/WMSServices/WIDESEA_Model/Models/Basic/Dt_CustomerInfo.cs
@@ -23,29 +23,31 @@
        /// <summary>
        /// å®¢æˆ·ç¼–码
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "客户编码")]
        public string Code { get; set; }
        /// <summary>
        /// å®¢æˆ·å‡ºå…¥åº“规则
        /// </summary>
        [SugarColumn(IsNullable = true,ColumnDescription = "客户出入库规则")]
        public int OutRule { get; set; }
        /// <summary>
        /// å®¢æˆ·åç§°
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "客户名称")]
        public string Name { get; set; }
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "客户编码")]
        public string CustomerCode { get; set; }
        /// <summary>
        /// å®¢æˆ·å…¨ç§°
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 100, ColumnDescription = "客户全称")]
        public string NickName { get; set; }
        [SugarColumn(IsNullable = false, Length = 200, ColumnDescription = "客户全称")]
        public string CustomerName { get; set; }
        /// <summary>
        /// å®¢æˆ·çŠ¶æ€ 0:禁用 1:可用
        /// å®¢æˆ·ç®€ç§°
        /// </summary>
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "客户简称")]
        public string ShortName { get; set; }
        /// <summary>
        /// çŠ¶æ€
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "状态")]
        public int State { get; set; }
        public int Status { get; set; }
        /// <summary>
        /// å‡ºåº“规则
        /// </summary>
        [SugarColumn(IsNullable = false, ColumnDescription = "出库规则")]
        public int OutRule { get; set; }
    }
}