|
|
/*
|
|
|
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
|
|
*如果数据库字段发生变化,请在代码生器重新生成此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 = "VW_OP_YARD_CTNMNG_DJZ")]
|
|
|
public class VW_OP_YARD_CTNMNG_DJZ:BaseEntity
|
|
|
{
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Key]
|
|
|
[Display(Name ="GID")]
|
|
|
[Column(TypeName="uniqueidentifier")]
|
|
|
[Required(AllowEmptyStrings=false)]
|
|
|
public Guid GID { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///委托单位
|
|
|
/// </summary>
|
|
|
[Display(Name ="委托单位")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
public string CUSTOMERNAME { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///进站时间
|
|
|
/// </summary>
|
|
|
[Display(Name ="进站时间")]
|
|
|
[Column(TypeName="datetime")]
|
|
|
public DateTime? ENTERDATE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///车牌
|
|
|
/// </summary>
|
|
|
[Display(Name ="车牌")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
public string TRUCKNO { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///联系电话
|
|
|
/// </summary>
|
|
|
[Display(Name ="联系电话")]
|
|
|
[MaxLength(510)]
|
|
|
[Column(TypeName="nvarchar(510)")]
|
|
|
public string LinkTel { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///箱号
|
|
|
/// </summary>
|
|
|
[Display(Name ="箱号")]
|
|
|
[MaxLength(510)]
|
|
|
[Column(TypeName="nvarchar(510)")]
|
|
|
public string BoxCode { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///箱型
|
|
|
/// </summary>
|
|
|
[Display(Name ="箱型")]
|
|
|
[MaxLength(510)]
|
|
|
[Column(TypeName="nvarchar(510)")]
|
|
|
public string BoxType { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///箱重
|
|
|
/// </summary>
|
|
|
[Display(Name ="箱重")]
|
|
|
[DisplayFormat(DataFormatString="10,2")]
|
|
|
[Column(TypeName="decimal")]
|
|
|
public decimal? BoxWeigth { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///实际入场日期
|
|
|
/// </summary>
|
|
|
[Display(Name ="实际入场日期")]
|
|
|
[Column(TypeName="datetime")]
|
|
|
public DateTime? ENTERDATE_ACTUAL { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///出场日期
|
|
|
/// </summary>
|
|
|
[Display(Name ="出场日期")]
|
|
|
[Column(TypeName="datetime")]
|
|
|
public DateTime? OutDate { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="DAYS")]
|
|
|
[Column(TypeName="int")]
|
|
|
public int? DAYS { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///预约业务状态
|
|
|
/// </summary>
|
|
|
[Display(Name ="预约业务状态")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
public string BILLSTATUS_CUST { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///箱状态
|
|
|
/// </summary>
|
|
|
[Display(Name ="箱状态")]
|
|
|
[MaxLength(510)]
|
|
|
[Column(TypeName="nvarchar(510)")]
|
|
|
public string BoxStatus { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="BondType")]
|
|
|
[Column(TypeName="int")]
|
|
|
public int? BondType { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///库位
|
|
|
/// </summary>
|
|
|
[Display(Name ="库位")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
public string AREACODE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///进场磅重
|
|
|
/// </summary>
|
|
|
[Display(Name ="进场磅重")]
|
|
|
[DisplayFormat(DataFormatString="18,2")]
|
|
|
[Column(TypeName="decimal")]
|
|
|
public decimal? EnterWeight { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///出场磅重
|
|
|
/// </summary>
|
|
|
[Display(Name ="出场磅重")]
|
|
|
[DisplayFormat(DataFormatString="18,2")]
|
|
|
[Column(TypeName="decimal")]
|
|
|
public decimal? OutWeight { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///货物名称
|
|
|
/// </summary>
|
|
|
[Display(Name ="货物名称")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
public string GOODNAME { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="Status")]
|
|
|
[Column(TypeName="smallint")]
|
|
|
[Required(AllowEmptyStrings=false)]
|
|
|
public int Status { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///备注
|
|
|
/// </summary>
|
|
|
[Display(Name ="备注")]
|
|
|
[MaxLength(800)]
|
|
|
[Column(TypeName="varchar(800)")]
|
|
|
public string REMARK { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="EnterOrderGid")]
|
|
|
[Column(TypeName="uniqueidentifier")]
|
|
|
public Guid? EnterOrderGid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///流水号
|
|
|
/// </summary>
|
|
|
[Display(Name ="流水号")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
public string BSNO { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="ISTwoBox")]
|
|
|
[Column(TypeName="bit")]
|
|
|
public bool? ISTwoBox { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="NetWeight")]
|
|
|
[DisplayFormat(DataFormatString="19,2")]
|
|
|
[Column(TypeName="decimal")]
|
|
|
public decimal? NetWeight { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="IsCollectTRUCK")]
|
|
|
[Column(TypeName="bit")]
|
|
|
public bool? IsCollectTRUCK { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="IsCollectBox")]
|
|
|
[Column(TypeName="bit")]
|
|
|
public bool? IsCollectBox { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="IsUpLoadPackBox")]
|
|
|
[Column(TypeName="bit")]
|
|
|
public bool? IsUpLoadPackBox { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="BusinessType")]
|
|
|
[Column(TypeName="int")]
|
|
|
public int? BusinessType { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="AuditStatus")]
|
|
|
[Column(TypeName="int")]
|
|
|
public int? AuditStatus { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="LimitRatio")]
|
|
|
[Column(TypeName="decimal")]
|
|
|
public decimal? LimitRatio { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="TrainId")]
|
|
|
[Column(TypeName="uniqueidentifier")]
|
|
|
public Guid? TrainId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="TrainNum")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
public string TrainNum { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="OrgId")]
|
|
|
[MaxLength(100)]
|
|
|
[Column(TypeName="varchar(100)")]
|
|
|
public string OrgId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="MaterialStatus")]
|
|
|
[Column(TypeName="int")]
|
|
|
public int? MaterialStatus { get; set; }
|
|
|
|
|
|
|
|
|
}
|
|
|
} |