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 = "ct_bank_reconciliation", DisableSyncStructure = true)] public partial class CtBankReconciliation { /// /// 日记账金额 /// [JsonProperty, Column(DbType = "decimal(18,2)")] public decimal? AMOUNT1 { get; set; } = 0M; /// /// 对账単金额 /// [JsonProperty, Column(DbType = "decimal(18,2)")] public decimal? AMOUNT2 { get; set; } = 0M; /// /// 分公司代码 /// [JsonProperty, Column(DbType = "varchar(36)")] public string CORPID { get; set; } = ""; [JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)] public string GID { get; set; } /// /// 日记账项目 /// [JsonProperty, Column(DbType = "varchar(50)")] public string ITEM1 { get; set; } = ""; /// /// 对账单项目 /// [JsonProperty, Column(DbType = "varchar(50)")] public string ITEM2 { get; set; } = ""; /// /// 行号1 /// [JsonProperty] public int? LINENUM1 { get; set; } = 0; /// /// 行号2 /// [JsonProperty] public int? LINENUM2 { get; set; } = 0; /// /// 更改操作时间 /// [JsonProperty, Column(InsertValueSql = "getdate()")] public DateTime? MODIFIEDTIME { get; set; } /// /// 更改操作人gid /// [JsonProperty, Column(DbType = "varchar(36)")] public string MODIFIEDUSER { get; set; } = ""; /// /// 凭证行号1 /// [JsonProperty] public int? ROWNUM1 { get; set; } = 0; /// /// 凭证行号2 /// [JsonProperty] public int? ROWNUM2 { get; set; } = 0; /// /// 账套启用GID /// [JsonProperty, Column(DbType = "varchar(36)")] public string STARTGID { get; set; } = ""; } }