using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace New_College.Model.Models { /// ///用户配置表 /// public class D_UserSettingBase : EntityModel { /// /// /// public int CustomerId { get; set; } /// /// 0-pc,1-minpro /// public int PType { get; set; } /// /// 分数修改次数 /// public int ScoreCount { get; set; } /// /// 功能查询次数 /// public int SearchCount { get; set; } /// /// 智能填报显示几所 /// public int ShowCount { get; set; } } }