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.

165 lines
4.5 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_payapplication", DisableSyncStructure = true)]
public partial class ChFeePayapplication {
[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? AMOUNTOT { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? AMOUNTRMB { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? AMOUNTUSD { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string APPLICANT { get; set; }
[JsonProperty]
public DateTime? APPLYTIME { get; set; }
[JsonProperty, Column(DbType = "varchar(200)")]
public string AUDITREMARK { get; set; }
[JsonProperty]
public DateTime? AUDITTIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string AUDITUSER { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string BILLNO { get; set; }
[JsonProperty]
public int? BILLSTATUS { get; set; }
[JsonProperty, Column(Name = "BS_CUSTOMERNAME", DbType = "varchar(200)")]
public string BSCUSTOMERNAME { get; set; } = "";
[JsonProperty, Column(DbType = "varchar(100)")]
public string CHEQUENUMREMARK { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string CHEQUEPAYABLE { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string COMPANYID { get; set; }
[JsonProperty, Column(DbType = "varchar(3)")]
public string CURR { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string CUSTACCOUNTGID { get; set; } = "";
[JsonProperty, Column(DbType = "varchar(50)")]
public string CUSTOMERNAME { get; set; }
[JsonProperty]
public DateTime? DELETETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string DELETEUSER { get; set; }
[JsonProperty]
public DateTime? ENTERTIME { get; set; }
[JsonProperty]
public DateTime? INVDATE { get; set; }
[JsonProperty, Column(DbType = "varchar(200)")]
public string INVNO { get; set; }
[JsonProperty]
public bool? ISAPP { get; set; } = false;
[JsonProperty]
public bool? ISDELETE { get; set; }
[JsonProperty, Column(DbType = "varchar(1)")]
public string ISPRINT { get; set; }
[JsonProperty]
public DateTime? PAYABLETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string PAYACCOUNTGID { get; set; } = "";
[JsonProperty, Column(DbType = "varchar(36)")]
public string PAYAPPID { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string PAYBANK { get; set; } = "";
[JsonProperty, Column(DbType = "varchar(10)")]
public string PAYTYPE { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string PORTDISCHARGE { get; set; } = "";
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? PREAMOUNTOT { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? PREAMOUNTRMB { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? PREAMOUNTUSD { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? RATE { get; set; }
[JsonProperty, Column(DbType = "varchar(200)")]
public string REASON { get; set; }
[JsonProperty, Column(DbType = "varchar(1024)")]
public string REMARK { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? SETTLEOT { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? SETTLERATE { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? SETTLERMB { get; set; }
[JsonProperty]
public DateTime? SETTLETIME { get; set; }
[JsonProperty]
public int? SETTLETYPE { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? SETTLEUSD { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string SETTLEUSER { get; set; }
[JsonProperty, Column(DbType = "decimal(18,2)")]
public decimal? STLAMOUNT { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string STLCURR { get; set; }
[JsonProperty, Column(DbType = "decimal(18,6)")]
public decimal? STLRATE { get; set; }
[JsonProperty]
public int WXPUSH { get; set; } = 0;
}
}