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.
BaoGuanSYHT/djy.Model/db/ChFeeSettlementRemittance.cs

84 lines
2.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_settlement_remittance", DisableSyncStructure = true)]
public partial class ChFeeSettlementRemittance {
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; }
[JsonProperty, Column(DbType = "numeric(18,3)")]
public decimal? AMOUNT { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string BILLNO { get; set; }
[JsonProperty]
public int? BILLSTATUS { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string BSNO { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? BUYRATE { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string COMPANYID { get; set; }
[JsonProperty]
public DateTime? CREATETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string CURRENCY { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string CUSTNO { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string CUSTOMERNAME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string FEEID { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string FEENAME { get; set; }
[JsonProperty]
public int? FEETYPE { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string HBLNO { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string MBLNO { get; set; }
[JsonProperty, Column(DbType = "varchar(1024)")]
public string REMARK { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string REMITTANCE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? REMITTANCEAMOUNT { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string SALE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? SELLRATE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? SETTLRATE { get; set; }
}
}