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 = "cw_user_ticheng", DisableSyncStructure = true)] public partial class CwUserTicheng { [JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)] public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper(); [JsonProperty, Column(DbType = "varchar(7)")] public string ACCDATE { get; set; } = ""; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? KouFeiLv { get; set; } = 0M; [JsonProperty, Column(InsertValueSql = "getdate()")] public DateTime? MODIFIEDTIME { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string MODIFIEDUSER { get; set; } = ""; [JsonProperty, Column(DbType = "varchar(500)")] public string REMARK { get; set; } = ""; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? ShiFa { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? TiCheng { get; set; } = 0M; [JsonProperty, Column(DbType = "varchar(36)")] public string USERGID { get; set; } = ""; } }