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.

120 lines
3.8 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 = "tMsWlBulkPound", DisableSyncStructure = true)]
public partial class TMsWlBulkPound {
[JsonProperty, Column(DbType = "varchar(20)", 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(20)", IsNullable = false)]
public string BulkBillNo { get; set; } = "*";
[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)")]
public string DepartureTime { get; set; } = "";
[JsonProperty, Column(DbType = "varchar(100)")]
public string DrvName { get; set; }
[JsonProperty, Column(DbType = "varchar(40)", IsNullable = false)]
public string GId { get; set; }
[JsonProperty, Column(Name = "heapweight", DbType = "numeric(18,4)")]
public decimal? Heapweight { get; set; } = 0M;
[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(18,4)")]
public decimal? OneMil { get; set; } = 0M;
[JsonProperty, Column(DbType = "numeric(19,2)")]
public decimal OverLoadMil { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(100)")]
public string PackSpec { get; set; }
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
public string PayCustCode { get; set; }
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
public string PayCustName { 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, Column(DbType = "numeric(18,4)")]
public decimal? RatedFuel { get; set; } = 0M;
[JsonProperty, Column(DbType = "numeric(19,2)")]
public decimal? RealTransPrice { get; set; }
[JsonProperty, Column(DbType = "numeric(19,2)")]
public decimal? RealTransTotal { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? TonMil { get; set; } = 0M;
[JsonProperty, Column(DbType = "numeric(19,2)")]
public decimal TransPrice { get; set; } = 0M;
[JsonProperty, Column(DbType = "numeric(19,2)")]
public decimal TransTotal { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(100)")]
public string TruckNo { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? UnloadCount { 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; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string WorkType { get; set; }
}
}