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.0 KiB
C#
105 lines
3.0 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 = "vMsWlBizBill", DisableSyncStructure = true)]
|
|
public partial class VMsWlBizBill {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)", IsNullable = false)]
|
|
public string BillNo { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(1)", IsNullable = false)]
|
|
public string BillStatus { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(1)", IsNullable = false)]
|
|
public string BillType { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string BsBillNo { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
|
|
public string BsType { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(31)")]
|
|
public string ContainerNos { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? CustDate { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string CustName { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(6)", IsNullable = false)]
|
|
public string DdCode { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string DGTYPE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string DGTYPECODE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string DispatchName { 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 EtDate { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? ExpDate { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
|
|
public string FeeOpStatus { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(1)", IsNullable = false)]
|
|
public string FeeStatus { 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 = "varchar(200)")]
|
|
public string LoadPlace { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string MblNo { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
|
|
public string OrgCode { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string Remark { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(19,2)")]
|
|
public decimal Ton { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string TruckNo { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(6)")]
|
|
public string UserCode { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string YardCode { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string YardName { get; set; }
|
|
|
|
}
|
|
|
|
}
|