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/CTNMNG/OP_YARD_TRAINDETAIL.cs

108 lines
2.9 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_YARD_TRAINDETAIL")]
public class OP_YARD_TRAINDETAIL:BaseEntity
{
/// <summary>
///
/// </summary>
[Key]
[Display(Name ="YARDTRAINDETAILGID")]
[Column(TypeName="uniqueidentifier")]
[Required(AllowEmptyStrings=false)]
public Guid YARDTRAINDETAILGID { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="YARDTRAINGID")]
[Column(TypeName="uniqueidentifier")]
[ParentId("OP_YARD_TRAININFO")]
public Guid? YARDTRAINGID { get; set; }
/// <summary>
///叉车工
/// </summary>
[Display(Name ="叉车工")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string WORKER { get; set; }
/// <summary>
///业务名称
/// </summary>
[Display(Name ="业务名称")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string WORKNAME { get; set; }
/// <summary>
///执行日期
/// </summary>
[Display(Name ="执行日期")]
[Column(TypeName="datetime")]
public DateTime? WORKDATE { get; set; }
/// <summary>
///箱号
/// </summary>
[Display(Name ="箱号")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string CNTRNO { get; set; }
/// <summary>
///计划车架号
/// </summary>
[Display(Name ="计划车架号")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string CARNUM_1 { get; set; }
/// <summary>
///实际车架号
/// </summary>
[Display(Name ="实际车架号")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string CARNUM_2 { get; set; }
/// <summary>
///目的库位
/// </summary>
[Display(Name ="目的库位")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string AREACODE { get; set; }
/// <summary>
///客户名称
/// </summary>
[Display(Name ="客户名称")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string CUSTOMERNAME { get; set; }
/// <summary>
///是否完成
/// </summary>
[Display(Name ="是否完成")]
[Column(TypeName="bit")]
public bool? ISDONE { get; set; }
}
}