using System; using System.Linq; using System.Text; using SqlSugar; namespace DeviceRepairAndOptimization.Models.SugarModel { /// /// /// [SugarTable("UserSetting")] public partial class UserSetting { public UserSetting() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int AutoID { get; set; } /// /// Desc:用户编号 /// Default: /// Nullable:False /// public int UserID { get; set; } /// /// Desc:计划提前提醒周期(天) /// Default:30 /// Nullable:True /// public int? PlanAlarmCycle { get; set; } /// /// Desc:创建日期 /// Default: /// Nullable:True /// public DateTime? CreateDate { get; set; } /// /// Desc:最后修改日期 /// Default: /// Nullable:True /// public DateTime? LastUpdateDate { get; set; } } }