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 = "v_OA_ChequeCheck", DisableSyncStructure = true)] public partial class VOAChequeCheck { [JsonProperty, Column(Name = "billno", DbType = "varchar(20)")] public string Billno { get; set; } [JsonProperty, Column(DbType = "numeric(38,2)")] public decimal? BXAMOUNT { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string BXGID { get; set; } [JsonProperty, Column(DbType = "varchar(50)")] public string BXNO { get; set; } [JsonProperty, Column(Name = "chequeamount", DbType = "decimal(18,3)")] public decimal? Chequeamount { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string CHEQUEAMOUNTUPPER { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string CHEQUECUSTNAME { get; set; } [JsonProperty, Column(Name = "chequemaketime")] public DateTime? Chequemaketime { get; set; } [JsonProperty, Column(Name = "chequeno", DbType = "varchar(200)")] public string Chequeno { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string COMPANYID { get; set; } [JsonProperty, Column(Name = "companyname", DbType = "varchar(150)")] public string Companyname { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string CREATEUSER { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string DEPTID { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string DEPTNAME { get; set; } [JsonProperty, Column(Name = "enterdate", DbType = "varchar(12)")] public string Enterdate { get; set; } [JsonProperty, Column(Name = "gid", DbType = "varchar(36)", IsNullable = false)] public string Gid { get; set; } [JsonProperty, Column(DbType = "numeric(18,2)")] public decimal? JKAMOUNT { get; set; } [JsonProperty, Column(DbType = "numeric(38,3)")] public decimal? JKREMAIN { get; set; } [JsonProperty, Column(DbType = "varchar(100)")] public string PASSWORD { get; set; } [JsonProperty] public DateTime? PRINTTIME { get; set; } [JsonProperty, Column(DbType = "varchar(150)")] public string SHOWNAME { get; set; } [JsonProperty, Column(DbType = "varchar(36)")] public string USERID { get; set; } } }