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.

141 lines
3.9 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_multiplereport", DisableSyncStructure = true)]
public partial class ChFeeMultiplereport {
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? ABF { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? AMS { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? BGUF { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? BXF { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? CIC { get; set; }
[JsonProperty]
public DateTime? CREATETIME { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string CREATEUSER { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string CTNS { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string CURRENCY { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string CUSTOMERNAME { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? CZF { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? DCF { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? DFF { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? DLF { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? DZF { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? EBS { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? ECRS { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? ENS { get; set; }
[JsonProperty, Column(DbType = "smalldatetime")]
public DateTime? ETD { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string FORWARDER { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? GBF { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? GGF { get; set; }
[JsonProperty, Column(DbType = "varchar(36)")]
public string GID { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? GZF { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string PLACEDELIVERY { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? PSS { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? QFF { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? RCS { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string SALE { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? THC { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string TYPENAME { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string VESSEL { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string VOYNO { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? XINXIF { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? XJF { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? XSF { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? XXF { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? ZDXHF { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? ZLF { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? ZQF { get; set; }
[JsonProperty, Column(DbType = "decimal(18,3)")]
public decimal? ZXFI { get; set; }
}
}