移动系统liao
2024-11-12 1cb49b04ae6709e6054c328f5ed12bff9ca014c8
CoreCms.Net.Model/Entities/Distribution/CoreCmsDistribution.cs
@@ -17,7 +17,7 @@
    /// 经销商表
    /// </summary>
    [SugarTable("CoreCmsDistribution",TableDescription = "经销商表")]
    [SqlCodeFirst]
    public partial class CoreCmsDistribution
    {
        /// <summary>
@@ -156,8 +156,8 @@
        /// 年销售额
        /// </summary>
        [Display(Name = "年销售额")]
        [SugarColumn(ColumnDescription = "年销售额")]
        public decimal sales { get; set; } = 0;
        [SugarColumn(ColumnDescription = "年销售额" ,IsNullable =true)]
        public decimal? sales { get; set; } = 0;
        /// <summary>
@@ -167,14 +167,27 @@
        [SugarColumn(ColumnDescription = "所属行业")]
        public string profession { get; set; }
        /// <summary>
        /// 店铺做标牌
        /// 店铺定位
        /// </summary>
        [Display(Name = "店铺定位")]
        [SugarColumn(ColumnDescription = "店铺定位", IsNullable =true)]
        public string storeCoordinate { get; set; }
        /// <summary>
        /// 身份证
        /// </summary>
        [Display(Name = "身份证")]
        [SugarColumn(ColumnDescription = "身份证", IsNullable = true)]
        public string idCradNumber { get; set; }
        /// <summary>
        /// 学校名称
        /// </summary>
        [Display(Name = "学校名称")]
        [SugarColumn(ColumnDescription = "学校名称", IsNullable = true)]
        public string schoolName { get; set; }
    }