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.
87 lines
2.6 KiB
C#
87 lines
2.6 KiB
C#
3 years ago
|
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 = "tMsWlDjPound", DisableSyncStructure = true)]
|
||
|
public partial class TMsWlDjPound {
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(40)", IsPrimary = true, IsNullable = false)]
|
||
|
public string BillNo { get; set; } = "*";
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(27,0)", IsPrimary = true)]
|
||
|
public decimal SerialNo { get; set; } = 0M;
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
||
|
public string ClsName { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
|
||
|
public string CustCode { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)]
|
||
|
public string CustName { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
||
|
public string DepartureDate { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(20)", IsNullable = false)]
|
||
|
public string DjBillNo { get; set; } = "*";
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(40)", IsNullable = false)]
|
||
|
public string GId { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(19,2)")]
|
||
|
public decimal LoadCount { get; set; } = 0M;
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
||
|
public string LoadPlace { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(19,2)")]
|
||
|
public decimal NoLoadMil { get; set; } = 0M;
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(19,2)")]
|
||
|
public decimal OverLoadMil { get; set; } = 0M;
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
||
|
public decimal? PKgs { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(19,2)")]
|
||
|
public decimal PlanLoadCount { get; set; } = 0M;
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(19,2)")]
|
||
|
public decimal PlanNoLoadMil { get; set; } = 0M;
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(19,2)")]
|
||
|
public decimal PlanOverLoadMil { get; set; } = 0M;
|
||
|
|
||
|
[JsonProperty]
|
||
|
public int? PNum { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(19,2)")]
|
||
|
public decimal RatedFuel { get; set; } = 0M;
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(19,2)")]
|
||
|
public decimal RealFuel { get; set; } = 0M;
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(19,2)")]
|
||
|
public decimal TonMil { get; set; } = 0M;
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
||
|
public string UnLoadPlace { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(DbType = "numeric(19,2)")]
|
||
|
public decimal Weight { get; set; } = 0M;
|
||
|
|
||
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
||
|
public string WorkTime { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|