using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace New_College.Model.ViewModels { public class UserSettingBaseRequest { public long CustomerId { get; set; } } public class UserBaseSettingUpdateDTO { public long CustomerId { get; set; } /// /// 0分数修改次数|1查询次数 /// public int UType { get; set; } } /// /// /// public class QuestionNaireDto { /// /// /// public int id { get; set; } /// /// /// public string infoList { get; set; } } public class UserBaseSettingDto { public long 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; } } }