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 = "code_owefee_module", DisableSyncStructure = true)] public partial class CodeOwefeeModule { /// /// 唯一编号 /// [JsonProperty, Column(DbType = "varchar(100)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper(); /// /// CORPID /// [JsonProperty, Column(DbType = "varchar(36)")] public string CORPID { get; set; } /// /// CREATETIME /// [JsonProperty, Column(InsertValueSql = "getdate()")] public DateTime? CREATETIME { get; set; } /// /// 创建人 /// [JsonProperty, Column(DbType = "varchar(36)")] public string CREATEUSER { get; set; } /// /// 模块名 /// [JsonProperty, Column(DbType = "varchar(50)")] public string MODULENAME { get; set; } /// /// 表名 /// [JsonProperty, Column(DbType = "varchar(50)")] public string TABLENAME { get; set; } } }