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.

96 lines
2.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 = "run_fee_settlement", DisableSyncStructure = true)]
public partial class RunFeeSettlement {
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; } = Guid.NewGuid().ToString().ToUpper();
[JsonProperty, Column(DbType = "varchar(36)")]
public string ACCOUNTRMB { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string ACCOUNTUSD { get; set; }
[JsonProperty, Column(DbType = "numeric(18,3)")]
public decimal? AMOUNTRMB { get; set; }
[JsonProperty, Column(DbType = "numeric(18,3)")]
public decimal? AMOUNTUSD { get; set; }
[JsonProperty]
public int? BILLSTATUS { get; set; }
[JsonProperty]
public int? BILLTYPE { get; set; }
[JsonProperty, Column(DbType = "varchar(200)")]
public string CHEQUENO { get; set; }
[JsonProperty, Column(DbType = "varchar(200)")]
public string CHEQUENOUSD { get; set; } = "";
[JsonProperty, Column(DbType = "varchar(100)")]
public string CHEQUENUMREMARK { 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(50)")]
public string FINANCIALVOUCHER { get; set; }
[JsonProperty]
public bool? ISEXPORT { get; set; }
[JsonProperty]
public DateTime? MODIFIEDTIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string MODIFIEDUSER { get; set; }
[JsonProperty]
public DateTime? PAYABLETIME { get; set; }
[JsonProperty, Column(DbType = "numeric(18,5)")]
public decimal? RATE { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string REMARK { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string SERIALNO { get; set; }
[JsonProperty]
public int? SETTLEMODE { get; set; }
[JsonProperty]
public int? SETTLETYPE { get; set; }
[JsonProperty]
public int? TYPE { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string VOUCHERNO { get; set; }
}
}