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/Tb_BlockTrainOrderUp.cs

99 lines
3.0 KiB
C#

2 years ago
/*
*,
*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; }
}
}