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 = "ch_fee_settlement_PAYRMB", DisableSyncStructure = true)] public partial class ChFeeSettlementPAYRMB { [JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)] public string BILLNO { get; set; } [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? Amount { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? DHF { get; set; } = 0M; [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? SXF { get; set; } = 0M; } }