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.

78 lines
2.2 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 = "vMsWlTrans", DisableSyncStructure = true)]
public partial class VMsWlTrans {
[JsonProperty, Column(DbType = "varchar(20)", IsNullable = false)]
public string BillNo { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal? Charge { get; set; }
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
public string ContainerType { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string CustomerName { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string DrvName { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string DstArea { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string ExpDate { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal? ExtrasFee { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal FixFsTotal { get; set; }
[JsonProperty, Column(DbType = "numeric(38,2)")]
public decimal? Freight { get; set; }
[JsonProperty, Column(DbType = "numeric(19,2)")]
public decimal FuelQty { get; set; }
[JsonProperty, Column(DbType = "varchar(40)", IsNullable = false)]
public string GId { get; set; }
[JsonProperty, Column(DbType = "numeric(19,2)")]
public decimal NoLoadMil { get; set; }
[JsonProperty, Column(DbType = "numeric(19,2)")]
public decimal OverLoadMil { get; set; }
[JsonProperty, Column(DbType = "numeric(19,2)")]
public decimal RatedFuel { get; set; }
[JsonProperty, Column(DbType = "numeric(19,2)")]
public decimal RealMil { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string RefBillNo { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string RtnYardName { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string TruckNo { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string YardName { get; set; }
}
}