using FreeSql.DatabaseModel;using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Threading.Tasks; using Newtonsoft.Json; using FreeSql.DataAnnotations; namespace djy.Model { [JsonObject(MemberSerialization.OptIn), Table(Name = "t_op_msgtype_emp", DisableSyncStructure = true)] public partial class TOpMsgtypeEmp { [JsonProperty, Column(Name = "id", IsPrimary = true, IsIdentity = true)] public int Id { get; set; } [JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)] public string 人员 { get; set; } [JsonProperty, Column(DbType = "varchar(20)")] public string 是否提醒 { get; set; } [JsonProperty, Column(DbType = "varchar(30)", IsNullable = false)] public string 消息类型 { get; set; } } }