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.

195 lines
5.3 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_jinzhang", DisableSyncStructure = true)]
public partial class ChFeeJinzhang {
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper();
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? AMOUNT { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string AMOUNTUPPER { get; set; }
[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(100)")]
public string BANK { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string BANKACCOUNT { 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 = "varchar(30)")]
public string BLNO { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string BLTYPE { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string COMPANYID { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string COMPANYNAME { 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 CURRENCY { get; set; }
[JsonProperty, Column(DbType = "varchar(200)")]
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(100)")]
public string JINZHANGCUSTNAME { get; set; }
[JsonProperty]
public DateTime? JINZHANGMAKETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(200)")]
public string JZNO { 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 PAYEEADR { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string PAYEEBANK { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string PAYEEBANKACCOUNT { 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(20)")]
public string STLBILLNO { 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; }
}
}