|
|
/*
|
|
|
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
|
|
*如果数据库字段发生变化,请在代码生器重新生成此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 = "Tb_BlockTrainOrderUp")]
|
|
|
public class Tb_BlockTrainOrderUp:BaseEntity
|
|
|
{
|
|
|
/// <summary>
|
|
|
///主键ID
|
|
|
/// </summary>
|
|
|
[Key]
|
|
|
[Display(Name ="主键ID")]
|
|
|
[Column(TypeName="bigint")]
|
|
|
[Required(AllowEmptyStrings=false)]
|
|
|
public long Id { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///Guid主键
|
|
|
/// </summary>
|
|
|
[Display(Name ="Guid主键")]
|
|
|
[Column(TypeName="uniqueidentifier")]
|
|
|
public Guid? Gid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///正式班列台账Gid
|
|
|
/// </summary>
|
|
|
[Display(Name ="正式班列台账Gid")]
|
|
|
[Column(TypeName="uniqueidentifier")]
|
|
|
public Guid? BlockTrainOrderGid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///删除类型 del 删除 up更新
|
|
|
/// </summary>
|
|
|
[Display(Name ="删除类型 del 删除 up更新")]
|
|
|
[MaxLength(510)]
|
|
|
[Column(TypeName="nvarchar(510)")]
|
|
|
public string UpType { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///班列订单类型 plan计划 official正式
|
|
|
/// </summary>
|
|
|
[Display(Name ="班列订单类型 plan计划 official正式")]
|
|
|
[MaxLength(510)]
|
|
|
[Column(TypeName="nvarchar(510)")]
|
|
|
public string TrainOrderType { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///新的班列Gid
|
|
|
/// </summary>
|
|
|
[Display(Name ="新的班列Gid")]
|
|
|
[Column(TypeName="uniqueidentifier")]
|
|
|
public Guid? BlockTrainGid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///变更原因
|
|
|
/// </summary>
|
|
|
[Display(Name ="变更原因")]
|
|
|
[MaxLength(510)]
|
|
|
[Column(TypeName="nvarchar(510)")]
|
|
|
public string Remark { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///更新时间戳
|
|
|
/// </summary>
|
|
|
[Display(Name ="更新时间戳")]
|
|
|
[Column(TypeName="bigint")]
|
|
|
[Required(AllowEmptyStrings=false)]
|
|
|
public long UpTime { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///创建时间戳秒级
|
|
|
/// </summary>
|
|
|
[Display(Name ="创建时间戳秒级")]
|
|
|
[Column(TypeName="bigint")]
|
|
|
[Required(AllowEmptyStrings=false)]
|
|
|
public long AddTime { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///数据状态 -1删除 0为不可用 1正常 1-99为各种状态 100为完成
|
|
|
/// </summary>
|
|
|
[Display(Name ="数据状态 -1删除 0为不可用 1正常 1-99为各种状态 100为完成")]
|
|
|
[Column(TypeName="smallint")]
|
|
|
[Required(AllowEmptyStrings=false)]
|
|
|
public int Status { get; set; }
|
|
|
|
|
|
|
|
|
}
|
|
|
} |