You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

189 lines
5.1 KiB
C#

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_cheque", DisableSyncStructure = true)]
public partial class ChFeeCheque {
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper();
[JsonProperty]
public DateTime? AUDITDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string AUDITOPERATOR { get; set; }
[JsonProperty, Column(DbType = "varchar(2)")]
public string BAI { get; set; }
[JsonProperty, Column(DbType = "varchar(2)")]
public string BAIWAN { get; set; }
[JsonProperty, Column(DbType = "varchar(2)")]
public string BAIYI { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string BANKID { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string BILLNO { get; set; }
[JsonProperty]
public int? BILLSTATUS { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? CHEQUEAMOUNT { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string CHEQUEAMOUNTUPPER { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string CHEQUECURRENCY { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string CHEQUECUSTNAME { get; set; }
[JsonProperty]
public DateTime? CHEQUEMAKETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(200)")]
public string CHEQUENO { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string CHEQUETYPE { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string COMPANYID { get; set; }
[JsonProperty]
public DateTime? CREATETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CREATEUSER { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string CUSTOMERNAME { get; set; }
[JsonProperty, Column(DbType = "varchar(2)")]
public string DAY { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string DAYUPPER { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string DELETECAUSE { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string DELETEOPERATOR { get; set; }
[JsonProperty]
public DateTime? DELETETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(2)")]
public string FEN { get; set; }
[JsonProperty]
public bool? ISAUDIT { get; set; }
[JsonProperty]
public bool? ISDELETE { get; set; }
[JsonProperty]
public bool? ISPRINT { get; set; }
[JsonProperty, Column(DbType = "varchar(2)")]
public string JIAO { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string MAKETIMEUPPER { get; set; }
[JsonProperty]
public DateTime? MODIFIEDTIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string MODIFIEDUSER { get; set; }
[JsonProperty, Column(DbType = "varchar(2)")]
public string MONTH { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string MONTHUPPER { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string PASSWORD { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string PAYBANK { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string PAYBANKACCOUNT { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string PAYEEADR { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string PAYEEBANK { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string PAYEEBANKACCOUNT { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string PAYSETTLEBILLNO { get; set; }
[JsonProperty]
public DateTime? PRINTTIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string PRINTUSER { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string PURPOSE { get; set; }
[JsonProperty, Column(DbType = "varchar(2)")]
public string QIAN { get; set; }
[JsonProperty, Column(DbType = "varchar(2)")]
public string QIANWAN { get; set; }
[JsonProperty, Column(DbType = "varchar(200)")]
public string REMARK { get; set; }
[JsonProperty, Column(DbType = "varchar(2)")]
public string SHI { get; set; }
[JsonProperty, Column(DbType = "varchar(2)")]
public string SHIWAN { get; set; }
[JsonProperty, Column(DbType = "varchar(2)")]
public string SHIYI { get; set; }
[JsonProperty, Column(DbType = "varchar(2)")]
public string UNIT { get; set; }
[JsonProperty, Column(DbType = "varchar(2)")]
public string WAN { get; set; }
[JsonProperty, Column(DbType = "varchar(4)")]
public string YEAR { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string YEARUPPER { get; set; }
[JsonProperty, Column(DbType = "varchar(2)")]
public string YI { get; set; }
[JsonProperty, Column(DbType = "varchar(2)")]
public string YUAN { get; set; }
}
}