/*
|
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
*如果数据库字段发生变化,请在代码生器重新生成此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 WIDESEA.Entity.SystemModels;
|
|
namespace WIDESEA.Entity.DomainModels
|
{
|
[Entity(TableCnName = "货位信息",TableName = "Dt_locationinfo")]
|
public class Dt_locationinfo:BaseEntity
|
{
|
/// <summary>
|
///ID
|
/// </summary>
|
[Key]
|
[Display(Name ="ID")]
|
[Column(TypeName="uniqueidentifier")]
|
[Required(AllowEmptyStrings=false)]
|
public Guid location_pkid { get; set; }
|
|
/// <summary>
|
///货位id
|
/// </summary>
|
[Display(Name ="货位id")]
|
[MaxLength(510)]
|
[Column(TypeName="nvarchar(510)")]
|
[Editable(true)]
|
public string location_id { get; set; }
|
|
/// <summary>
|
///库区/区域id
|
/// </summary>
|
[Display(Name ="库区/区域id")]
|
[MaxLength(510)]
|
[Column(TypeName="nvarchar(510)")]
|
[Editable(true)]
|
public string location_areaid { get; set; }
|
|
/// <summary>
|
///货位状态
|
/// </summary>
|
[Display(Name ="货位状态")]
|
[MaxLength(510)]
|
[Column(TypeName="nvarchar(510)")]
|
[Editable(true)]
|
public string location_state { get; set; }
|
|
/// <summary>
|
///行
|
/// </summary>
|
[Display(Name ="行")]
|
[Column(TypeName="int")]
|
[Editable(true)]
|
[Required(AllowEmptyStrings=false)]
|
public int location_line { get; set; }
|
|
/// <summary>
|
///列
|
/// </summary>
|
[Display(Name ="列")]
|
[Column(TypeName="int")]
|
[Editable(true)]
|
[Required(AllowEmptyStrings=false)]
|
public int location_column { get; set; }
|
|
/// <summary>
|
///层
|
/// </summary>
|
[Display(Name ="层")]
|
[Column(TypeName="int")]
|
[Editable(true)]
|
[Required(AllowEmptyStrings=false)]
|
public int location_layer { get; set; }
|
|
/// <summary>
|
///是否被锁定
|
/// </summary>
|
[Display(Name ="是否被锁定")]
|
[Column(TypeName="bit")]
|
[Editable(true)]
|
[Required(AllowEmptyStrings=false)]
|
public bool location_islocked { get; set; }
|
|
/// <summary>
|
///输送线入库站台
|
/// </summary>
|
[Display(Name ="输送线入库站台")]
|
[MaxLength(510)]
|
[Column(TypeName="nvarchar(510)")]
|
public string location_instation { get; set; }
|
|
/// <summary>
|
///输送线出库站台
|
/// </summary>
|
[Display(Name ="输送线出库站台")]
|
[MaxLength(510)]
|
[Column(TypeName="nvarchar(510)")]
|
public string location_outsation { get; set; }
|
|
/// <summary>
|
///货位类型
|
/// </summary>
|
[Display(Name ="货位类型")]
|
[MaxLength(510)]
|
[Column(TypeName="nvarchar(510)")]
|
public string location_type { get; set; }
|
|
/// <summary>
|
///备用字段
|
/// </summary>
|
[Display(Name ="备用字段")]
|
[MaxLength(255)]
|
[Column(TypeName="varchar(255)")]
|
public string location_bak_1 { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
[Display(Name ="location_bak_2")]
|
[MaxLength(255)]
|
[Column(TypeName="varchar(255)")]
|
public string location_bak_2 { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
[Display(Name ="location_bak_3")]
|
[MaxLength(255)]
|
[Column(TypeName="varchar(255)")]
|
public string location_bak_3 { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
[Display(Name ="location_bak_4")]
|
[MaxLength(255)]
|
[Column(TypeName="varchar(255)")]
|
public string location_bak_4 { get; set; }
|
|
/// <summary>
|
///
|
/// </summary>
|
[Display(Name ="location_bak_5")]
|
[MaxLength(255)]
|
[Column(TypeName="varchar(255)")]
|
public string location_bak_5 { get; set; }
|
|
/// <summary>
|
///货位深度
|
/// </summary>
|
[Display(Name ="货位深度")]
|
[Column(TypeName="int")]
|
public int? location_deep { get; set; }
|
|
|
}
|
}
|