using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using Core.Mes.Client.Comm.Attribute;
namespace Core.StlMes.Client.YdmBcPipeManage.Entity
{
///
/// 数据库表TMS_CAR_BASE所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:朱少波 时间:2020-04-17
///
public class TmsCarBaseEntity
{
[Description("选择")]
public bool Chk { get; set; }
///
/// 车牌号
///
private string carLicense = "";
///
/// 车辆类型代码A01017
///
private string carTypeCode = "";
///
/// 车辆类型
///
private string carTypeDesc = "";
///
/// 车辆状态代码A01024(运营/维修/保养)
///
private string carStatusCode = "";
///
/// 车辆状态
///
private string carStatusDesc = "";
///
/// 车辆运营状态代码A01048(空闲/待运/运输中) 待运 运输中 )
///
private string transStatusCode = "";
///
/// 车辆运营状态
///
private string transStatusDesc = "";
///
/// 运输计划号(运输区分代码2位+YYYYMMDD+5位流水)
///
private string plnNo = "";
///
/// 承运人代码
///
private string carrierCode = "";
///
/// 承运人名称
///
private string carrierName = "";
///
/// 车辆属性代码(外协/自有)A01018
///
private string carPropertyCode = "";
///
/// 车辆属性
///
private string carPropertyDesc = "";
///
/// 可载长度上限(M)
///
private decimal? carLenVal = null;
///
/// 可载宽度上限(M)
///
private decimal? carWidVal = null;
///
/// 可载高度上限(M)
///
private decimal? carHigVal = null;
///
/// 核载重量上限(T)
///
private decimal? carWtVal = null;
///
/// 车辆动态画像图路径
///
private string carMapPath = "";
///
/// 发动机号码
///
private string engineNo = "";
///
/// 车架号码
///
private string frameNo = "";
///
/// 购买日期
///
private string purchaseDate = "";
///
/// 购买总价
///
private decimal? purchasePrice = null;
///
/// 油品代码
///
private string oilCode = "";
///
/// 油品
///
private string oilDesc = "";
///
/// 油耗(升/100公里)
///
private decimal? fuelConsumption = null;
///
/// 折旧(元/100公里)
///
private decimal? depreciationPrice = null;
///
/// 保养周期(5000公里)
///
private decimal? maintenanceLegendCycle = null;
///
/// 保养周期(480日)
///
private decimal? maintenanceDateCycle = null;
///
/// 轮胎个数
///
private decimal? tyreNm = null;
///
/// 有效标志(1:有效,0:无效)
///
private string validflag = "";
///
/// 备注
///
private string memo = "";
///
/// 创建人ID
///
private string createUserid = "";
///
/// 创建人
///
private string createName = "";
///
/// 创建时间
///
private string createTime = "";
///
/// 修改人ID
///
private string updateUserid = "";
///
/// 修改人
///
private string updateName = "";
///
/// 修改时间
///
private string updateTime = "";
///
/// 废除人ID
///
private string deleteUserid = "";
///
/// 废除人
///
private string deleteName = "";
///
/// 废除时间
///
private string deleteTime = "";
///
/// 车辆自编号
///
private string carNo = "";
///
/// 排量
///
private string carDisplacement = "";
///
/// 行驶证号
///
private string drivingNo = "";
///
/// 车辆品牌代码A01062
///
private string carBrandCode = "";
///
/// 车辆品牌
///
private string carBrandName = "";
///
/// 检验到期预警时间(天)
///
private decimal? tipsDate = null;
///
/// 检验日期
///
private string examinationDate = "";
///
/// 下次检验日期
///
private string nextExaminationDate = "";
///
/// 区域
///
private string belongArea = "";
private decimal? carDemandQty;
private decimal? carDemandWt;
private decimal? undoneCount;
private decimal? undoneQtyVal;
private decimal? undoneWtVal;
///
/// 车牌号
///
[Description("车牌号")]
[Nullable(false)]
[DataLength(16)]
public string CarLicense
{
get { return carLicense; }
set { carLicense = value; }
}
///
/// 车辆类型代码A01017
///
[Description("车辆类型代码A01017")]
[Nullable(true)]
[DataLength(8)]
public string CarTypeCode
{
get { return carTypeCode; }
set { carTypeCode = value; }
}
///
/// 车辆类型
///
[Description("车辆类型")]
[Nullable(true)]
[DataLength(16)]
public string CarTypeDesc
{
get { return carTypeDesc; }
set { carTypeDesc = value; }
}
///
/// 车辆状态代码A01024(运营/维修/保养)
///
[Description("车辆状态代码A01024(运营/维修/保养)")]
[Nullable(true)]
[DataLength(8)]
public string CarStatusCode
{
get { return carStatusCode; }
set { carStatusCode = value; }
}
///
/// 车辆状态
///
[Description("车辆状态")]
[Nullable(true)]
[DataLength(16)]
public string CarStatusDesc
{
get { return carStatusDesc; }
set { carStatusDesc = value; }
}
///
/// 车辆运营状态代码A01048(空闲/待运/运输中) 待运 运输中 )
///
[Description("车辆运营状态代码A01048(空闲/待运/运输中) 待运 运输中 )")]
[Nullable(true)]
[DataLength(8)]
public string TransStatusCode
{
get { return transStatusCode; }
set { transStatusCode = value; }
}
///
/// 车辆运营状态
///
[Description("车辆运营状态")]
[Nullable(true)]
[DataLength(16)]
public string TransStatusDesc
{
get { return transStatusDesc; }
set { transStatusDesc = value; }
}
///
/// 运输计划号(运输区分代码2位+YYYYMMDD+5位流水)
///
[Description("运输计划号(运输区分代码2位+YYYYMMDD+5位流水)")]
[Nullable(true)]
[DataLength(16)]
public string PlnNo
{
get { return plnNo; }
set { plnNo = value; }
}
///
/// 承运人代码
///
[Description("承运人代码")]
[Nullable(true)]
[DataLength(16)]
public string CarrierCode
{
get { return carrierCode; }
set { carrierCode = value; }
}
///
/// 承运人名称
///
[Description("承运人名称")]
[Nullable(true)]
[DataLength(32)]
public string CarrierName
{
get { return carrierName; }
set { carrierName = value; }
}
///
/// 车辆属性代码(外协/自有)A01018
///
[Description("车辆属性代码(外协/自有)A01018")]
[Nullable(true)]
[DataLength(16)]
public string CarPropertyCode
{
get { return carPropertyCode; }
set { carPropertyCode = value; }
}
///
/// 车辆属性
///
[Description("车辆属性")]
[Nullable(true)]
[DataLength(32)]
public string CarPropertyDesc
{
get { return carPropertyDesc; }
set { carPropertyDesc = value; }
}
///
/// 可载长度上限(M)
///
[Description("可载长度上限(M)")]
[Nullable(true)]
[DataLength(10)]
public decimal? CarLenVal
{
get { return carLenVal; }
set { carLenVal = value; }
}
///
/// 可载宽度上限(M)
///
[Description("可载宽度上限(M)")]
[Nullable(true)]
[DataLength(10)]
public decimal? CarWidVal
{
get { return carWidVal; }
set { carWidVal = value; }
}
///
/// 可载高度上限(M)
///
[Description("可载高度上限(M)")]
[Nullable(true)]
[DataLength(10)]
public decimal? CarHigVal
{
get { return carHigVal; }
set { carHigVal = value; }
}
///
/// 核载重量上限(T)
///
[Description("核载重量上限(T)")]
[Nullable(true)]
[DataLength(10)]
public decimal? CarWtVal
{
get { return carWtVal; }
set { carWtVal = value; }
}
///
/// 车辆动态画像图路径
///
[Description("车辆动态画像图路径")]
[Nullable(true)]
[DataLength(32)]
public string CarMapPath
{
get { return carMapPath; }
set { carMapPath = value; }
}
///
/// 发动机号码
///
[Description("发动机号码")]
[Nullable(true)]
[DataLength(32)]
public string EngineNo
{
get { return engineNo; }
set { engineNo = value; }
}
///
/// 车架号码
///
[Description("车架号码")]
[Nullable(true)]
[DataLength(32)]
public string FrameNo
{
get { return frameNo; }
set { frameNo = value; }
}
///
/// 购买日期
///
[Description("购买日期")]
[Nullable(true)]
public string PurchaseDate
{
get { return purchaseDate; }
set { purchaseDate = value; }
}
///
/// 购买总价
///
[Description("购买总价")]
[Nullable(true)]
[DataLength(11)]
public decimal? PurchasePrice
{
get { return purchasePrice; }
set { purchasePrice = value; }
}
///
/// 油品代码
///
[Description("油品代码")]
[Nullable(true)]
[DataLength(8)]
public string OilCode
{
get { return oilCode; }
set { oilCode = value; }
}
///
/// 油品
///
[Description("油品")]
[Nullable(true)]
[DataLength(16)]
public string OilDesc
{
get { return oilDesc; }
set { oilDesc = value; }
}
///
/// 油耗(升/100公里)
///
[Description("油耗(升/100公里)")]
[Nullable(true)]
[DataLength(10)]
public decimal? FuelConsumption
{
get { return fuelConsumption; }
set { fuelConsumption = value; }
}
///
/// 折旧(元/100公里)
///
[Description("折旧(元/100公里)")]
[Nullable(true)]
[DataLength(10)]
public decimal? DepreciationPrice
{
get { return depreciationPrice; }
set { depreciationPrice = value; }
}
///
/// 保养周期(5000公里)
///
[Description("保养周期(5000公里)")]
[Nullable(true)]
[DataLength(10)]
public decimal? MaintenanceLegendCycle
{
get { return maintenanceLegendCycle; }
set { maintenanceLegendCycle = value; }
}
///
/// 保养周期(480日)
///
[Description("保养周期(480日)")]
[Nullable(true)]
[DataLength(10)]
public decimal? MaintenanceDateCycle
{
get { return maintenanceDateCycle; }
set { maintenanceDateCycle = value; }
}
///
/// 轮胎个数
///
[Description("轮胎个数")]
[Nullable(true)]
[DataLength(3)]
public decimal? TyreNm
{
get { return tyreNm; }
set { tyreNm = value; }
}
///
/// 有效标志(1:有效,0:无效)
///
[Description("有效标志(1:有效,0:无效)")]
[Nullable(true)]
[DataLength(1)]
public string Validflag
{
get { return validflag; }
set { validflag = value; }
}
///
/// 备注
///
[Description("备注")]
[Nullable(true)]
[DataLength(200)]
public string Memo
{
get { return memo; }
set { memo = value; }
}
///
/// 创建人ID
///
[Description("创建人ID")]
[Nullable(true)]
[DataLength(20)]
public string CreateUserid
{
get { return createUserid; }
set { createUserid = value; }
}
///
/// 创建人
///
[Description("创建人")]
[Nullable(true)]
[DataLength(20)]
public string CreateName
{
get { return createName; }
set { createName = value; }
}
///
/// 创建时间
///
[Description("创建时间")]
[Nullable(true)]
public string CreateTime
{
get { return createTime; }
set { createTime = value; }
}
///
/// 修改人ID
///
[Description("修改人ID")]
[Nullable(true)]
[DataLength(20)]
public string UpdateUserid
{
get { return updateUserid; }
set { updateUserid = value; }
}
///
/// 修改人
///
[Description("修改人")]
[Nullable(true)]
[DataLength(20)]
public string UpdateName
{
get { return updateName; }
set { updateName = value; }
}
///
/// 修改时间
///
[Description("修改时间")]
[Nullable(true)]
public string UpdateTime
{
get { return updateTime; }
set { updateTime = value; }
}
///
/// 废除人ID
///
[Description("废除人ID")]
[Nullable(true)]
[DataLength(20)]
public string DeleteUserid
{
get { return deleteUserid; }
set { deleteUserid = value; }
}
///
/// 废除人
///
[Description("废除人")]
[Nullable(true)]
[DataLength(20)]
public string DeleteName
{
get { return deleteName; }
set { deleteName = value; }
}
///
/// 废除时间
///
[Description("废除时间")]
[Nullable(true)]
public string DeleteTime
{
get { return deleteTime; }
set { deleteTime = value; }
}
///
/// 车辆自编号
///
[Description("车辆自编号")]
[Nullable(true)]
[DataLength(16)]
public string CarNo
{
get { return carNo; }
set { carNo = value; }
}
///
/// 排量
///
[Description("排量")]
[Nullable(true)]
[DataLength(20)]
public string CarDisplacement
{
get { return carDisplacement; }
set { carDisplacement = value; }
}
///
/// 行驶证号
///
[Description("行驶证号")]
[Nullable(true)]
[DataLength(32)]
public string DrivingNo
{
get { return drivingNo; }
set { drivingNo = value; }
}
///
/// 车辆品牌代码A01062
///
[Description("车辆品牌代码A01062")]
[Nullable(true)]
[DataLength(20)]
public string CarBrandCode
{
get { return carBrandCode; }
set { carBrandCode = value; }
}
///
/// 车辆品牌
///
[Description("车辆品牌")]
[Nullable(true)]
[DataLength(20)]
public string CarBrandName
{
get { return carBrandName; }
set { carBrandName = value; }
}
///
/// 检验到期预警时间(天)
///
[Description("检验到期预警时间(天)")]
[Nullable(true)]
[DataLength(2)]
public decimal? TipsDate
{
get { return tipsDate; }
set { tipsDate = value; }
}
///
/// 检验日期
///
[Description("检验日期")]
[Nullable(true)]
public string ExaminationDate
{
get { return examinationDate; }
set { examinationDate = value; }
}
///
/// 下次检验日期
///
[Description("下次检验日期")]
[Nullable(true)]
public string NextExaminationDate
{
get { return nextExaminationDate; }
set { nextExaminationDate = value; }
}
///
/// 区域
///
[Description("区域")]
[Nullable(true)]
[DataLength(32)]
public string BelongArea
{
get { return belongArea; }
set { belongArea = value; }
}
[Description("分派支")]
public decimal? CarDemandQty
{
get { return carDemandQty; }
set { carDemandQty = value; }
}
[Description("分派吨")]
public decimal? CarDemandWt
{
get { return carDemandWt; }
set { carDemandWt = value; }
}
[Description("未完成计划")]
public decimal? UndoneCount
{
get { return undoneCount; }
set { undoneCount = value; }
}
[Description("未完成支")]
public decimal? UndoneQtyVal
{
get { return undoneQtyVal; }
set { undoneQtyVal = value; }
}
[Description("未完成吨")]
public decimal? UndoneWtVal
{
get { return undoneWtVal; }
set { undoneWtVal = value; }
}
}
}