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.
DSWMS/Vue.Net/VOL.Entity/DomainModels/WMSINPLAN/OP_WMS_TRUCK.cs

188 lines
4.8 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/*
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
*如果数据库字段发生变化请在代码生器重新生成此Model
*/
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VOL.Entity.SystemModels;
namespace VOL.Entity.DomainModels
{
[Entity(TableCnName = "出入库车辆信息",TableName = "OP_WMS_TRUCK")]
public partial class OP_WMS_TRUCK:BaseEntity
{
/// <summary>
///
/// </summary>
[Key]
[Display(Name ="GID")]
[Column(TypeName="uniqueidentifier")]
[Required(AllowEmptyStrings=false)]
public Guid GID { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="WMSPLANID")]
[Column(TypeName="uniqueidentifier")]
[ParentId("")]
public Guid? WMSPLANID { get; set; }
/// <summary>
///车队
/// </summary>
[Display(Name ="车队")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string TRUCKTEAM { get; set; }
/// <summary>
///车号
/// </summary>
[Display(Name ="车号")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string TRUCKNO { get; set; }
/// <summary>
///司机
/// </summary>
[Display(Name ="司机")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string DRIVER { get; set; }
/// <summary>
///手机号
/// </summary>
[Display(Name ="手机号")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string MOBILE { get; set; }
/// <summary>
///驾照号
/// </summary>
[Display(Name ="驾照号")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string LICENSENUM { get; set; }
/// <summary>
///毛重(千克)
/// </summary>
[Display(Name ="毛重(千克)")]
[Column(TypeName="numeric")]
public decimal? KGS { get; set; }
/// <summary>
///体积(立方米)
/// </summary>
[Display(Name ="体积(立方米)")]
[Column(TypeName="numeric")]
public decimal? CBM { get; set; }
/// <summary>
///件数
/// </summary>
[Display(Name ="件数")]
[Column(TypeName="numeric")]
public decimal? PKGS { get; set; }
/// <summary>
///计费数量
/// </summary>
[Display(Name = "计费数量")]
[Column(TypeName = "numeric")]
public decimal? STORAGEUNITCOUNT { get; set; }
/// <summary>
///件数的包装
/// </summary>
[Display(Name ="件数的包装")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string KINDPKGS { get; set; }
/// <summary>
///箱号1
/// </summary>
[Display(Name ="箱号1")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string CNTRNO1 { get; set; }
/// <summary>
///件数1
/// </summary>
[Display(Name ="件数1")]
[Column(TypeName="numeric")]
public decimal? PKGS1 { get; set; }
/// <summary>
///箱号2
/// </summary>
[Display(Name ="箱号2")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string CNTRNO2 { get; set; }
/// <summary>
///件数2
/// </summary>
[Display(Name ="件数2")]
[Column(TypeName="numeric")]
public decimal? PKGS2 { get; set; }
/// <summary>
///箱号3
/// </summary>
[Display(Name ="箱号3")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string CNTRNO3 { get; set; }
/// <summary>
///件数3
/// </summary>
[Display(Name ="件数3")]
[Column(TypeName="numeric")]
public decimal? PKGS3 { get; set; }
/// <summary>
///驾驶证号
/// </summary>
[Display(Name ="驾驶证号")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string DRIVELICENSE { get; set; }
/// <summary>
///车自重
/// </summary>
[Display(Name ="车自重")]
[Column(TypeName="numeric")]
public decimal? WEIGHING { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="GOODSCODE")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string GOODSCODE { get; set; }
/// <summary>
///
/// </summary>
[Display(Name = "TRUCKMODEL")]
[MaxLength(50)]
[Column(TypeName = "varchar(50)")]
public string TRUCKMODEL { get; set; }
}
}