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.

105 lines
3.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 = "tMsWl_HH_ZY", DisableSyncStructure = true)]
public partial class TMsWlHHZY {
[JsonProperty, Column(DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
public string GID { get; set; }
[JsonProperty, Column(Name = "agio_amount_1", DbType = "numeric(18,2)")]
public decimal? AgioAmount1 { get; set; } = 0M;
[JsonProperty, Column(Name = "agio_amount_2", DbType = "numeric(18,2)")]
public decimal? AgioAmount2 { get; set; } = 0M;
[JsonProperty, Column(Name = "Amount_1", DbType = "numeric(10,2)")]
public decimal? Amount1 { get; set; }
[JsonProperty, Column(Name = "Amount_2", DbType = "numeric(10,2)")]
public decimal? Amount2 { get; set; }
[JsonProperty, Column(Name = "AmountPaid_1")]
public byte? AmountPaid1 { get; set; } = 0;
[JsonProperty, Column(Name = "AmountPaid_2")]
public byte? AmountPaid2 { get; set; } = 0;
[JsonProperty]
public byte? BillingType { get; set; } = 0;
[JsonProperty, Column(DbType = "numeric(10,0)")]
public decimal? CargoQty { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string ContractNo { get; set; }
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
public string Destination { get; set; }
[JsonProperty, Column(DbType = "numeric(10,2)")]
public decimal? Distance { get; set; }
[JsonProperty, Column(DbType = "date")]
public DateTime? ExpDate { get; set; }
[JsonProperty]
public byte? HZStatus { get; set; }
[JsonProperty, Column(Name = "In_Province")]
public byte? InProvince { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string MBLNO { get; set; }
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
public string OrgCode { get; set; }
[JsonProperty, Column(Name = "Paid_Amount_1", DbType = "numeric(10,2)")]
public decimal? PaidAmount1 { get; set; }
[JsonProperty, Column(Name = "Paid_Amount_2", DbType = "numeric(10,2)")]
public decimal? PaidAmount2 { get; set; }
[JsonProperty, Column(Name = "Pay_Amount_2", DbType = "numeric(10,2)")]
public decimal? PayAmount2 { get; set; }
[JsonProperty, Column(Name = "Pay_Distance", DbType = "numeric(10,2)")]
public decimal? PayDistance { get; set; }
[JsonProperty, Column(Name = "Price_1", DbType = "numeric(10,2)")]
public decimal? Price1 { get; set; }
[JsonProperty, Column(Name = "Price_2", DbType = "decimal(18,4)")]
public decimal Price2 { get; set; }
[JsonProperty, Column(DbType = "varchar(200)")]
public string Remark { get; set; }
[JsonProperty, Column(DbType = "numeric(10,2)")]
public decimal? Tax { get; set; }
[JsonProperty, Column(Name = "Taxamount_1", DbType = "numeric(18,2)")]
public decimal? Taxamount1 { get; set; } = 0M;
[JsonProperty, Column(Name = "Taxamount_2", DbType = "numeric(18,2)")]
public decimal? Taxamount2 { get; set; } = 0M;
[JsonProperty, Column(DbType = "numeric(10,2)")]
public decimal? Tons { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string TruckNo { get; set; }
}
}