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.

144 lines
4.5 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 = "tMsWlTruck", DisableSyncStructure = true)]
public partial class TMsWlTruck {
[JsonProperty, Column(DbType = "varchar(40)", IsPrimary = true, IsNullable = false)]
public string TruckNo { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string AcciDate { get; set; }
[JsonProperty, Column(DbType = "varchar(400)")]
public string AcciExplain { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? BasisFuel { get; set; } = 0M;
[JsonProperty, Column(Name = "bfdate")]
public DateTime? Bfdate { get; set; }
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
public string BizProperty { get; set; } = "0";
[JsonProperty, Column(DbType = "varchar(20)")]
public string CjNo { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? CraneFuel { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(400)")]
public string DealResult { get; set; }
[JsonProperty, Column(DbType = "varchar(6)", IsNullable = false)]
public string DrvCode { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string DrvName { get; set; }
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
public string Emissions { get; set; } = "0";
[JsonProperty, Column(DbType = "varchar(20)")]
public string FdjNo { get; set; }
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
public string FuelType { get; set; } = "0";
[JsonProperty, Column(DbType = "varchar(10)")]
public string GzDate { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string InsureDate { get; set; }
[JsonProperty, Column(DbType = "varchar(1)", IsNullable = false)]
public string InsureType { get; set; } = "0";
[JsonProperty, Column(DbType = "varchar(1)", IsNullable = false)]
public string IsRotine { get; set; } = "0";
[JsonProperty, Column(DbType = "varchar(10)")]
public string Level2Date { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string LINKTRUCKNO { get; set; } = "";
[JsonProperty, Column(DbType = "numeric(19,4)")]
public decimal LoadCount { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(100)")]
public string MngOrg { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string NativeAddr { get; set; }
[JsonProperty, Column(DbType = "varchar(1)", IsNullable = false)]
public string NowStatus { get; set; } = "0";
[JsonProperty, Column(DbType = "varchar(10)")]
public string NsDqDate { get; set; }
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
public string OrgCode { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string OWNER { get; set; }
[JsonProperty, Column(DbType = "varchar(10)", IsNullable = false)]
public string Property { get; set; } = "0";
[JsonProperty, Column(DbType = "varchar(100)")]
public string Remark { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string RepairDate { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string TEAMGID { get; set; } = "";
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? TonMilFuel { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(40)", IsNullable = false)]
public string TruckSpec { get; set; }
[JsonProperty, Column(DbType = "varchar(1)", IsNullable = false)]
public string TruckType { get; set; } = "0";
[JsonProperty, Column(DbType = "varchar(10)")]
public string TruncClass { get; set; }
[JsonProperty, Column(DbType = "varchar(20)", IsNullable = false)]
public string TrunkBrand { get; set; }
[JsonProperty, Column(DbType = "varchar(20)", IsNullable = false)]
public string TrunkColor { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? UnloadFuel { get; set; } = 0M;
[JsonProperty, Column(DbType = "varchar(1)", IsNullable = false)]
public string VerifiType { get; set; } = "0";
[JsonProperty, Column(DbType = "varchar(12)")]
public string WORKNO { get; set; } = "";
[JsonProperty, Column(DbType = "varchar(50)")]
public string YouLiaoType { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string ZrDate { get; set; }
}
}