/*
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
*如果数据库字段发生变化,请在代码生器重新生成此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_container_head_hty")]
public class Dt_container_head_hty:BaseEntity
{
///
///主键ID
///
[Key]
[Display(Name ="主键ID")]
[Column(TypeName="uniqueidentifier")]
[Required(AllowEmptyStrings=false)]
public Guid containerhead_id { get; set; }
///
///库区/区域ID
///
[Display(Name ="库区/区域ID")]
[MaxLength(80)]
[Column(TypeName="nvarchar(80)")]
public string containerhead_areaid { get; set; }
///
///托盘号
///
[Display(Name ="托盘号")]
[MaxLength(100)]
[Column(TypeName="nvarchar(100)")]
[Required(AllowEmptyStrings=false)]
public string containerhead_barcode { get; set; }
///
///创建者
///
[Display(Name ="创建者")]
[MaxLength(100)]
[Column(TypeName="nvarchar(100)")]
[Required(AllowEmptyStrings=false)]
public string containerhead_creator { get; set; }
///
///创建时间
///
[Display(Name ="创建时间")]
[Column(TypeName="datetime")]
[Required(AllowEmptyStrings=false)]
public DateTime containerhead_createtime { get; set; }
///
///完成时间
///
[Display(Name ="完成时间")]
[Column(TypeName="datetime")]
[Required(AllowEmptyStrings=false)]
public DateTime containerhead_finishtime { get; set; }
///
///操作类型
///
[Display(Name ="操作类型")]
[MaxLength(100)]
[Column(TypeName="nvarchar(100)")]
[Required(AllowEmptyStrings=false)]
public string containerhead_operatetype { get; set; }
///
///操作者
///
[Display(Name ="操作者")]
[MaxLength(100)]
[Column(TypeName="nvarchar(100)")]
[Required(AllowEmptyStrings=false)]
public string containerhead_compeletor { get; set; }
///
///预留1
///
[Display(Name ="预留1")]
[MaxLength(100)]
[Column(TypeName="nvarchar(100)")]
public string containerhead_text1 { get; set; }
///
///预留2
///
[Display(Name ="预留2")]
[MaxLength(100)]
[Column(TypeName="nvarchar(100)")]
public string containerhead_text2 { get; set; }
///
///预留3
///
[Display(Name ="预留3")]
[MaxLength(100)]
[Column(TypeName="nvarchar(100)")]
public string containerhead_text3 { get; set; }
///
///可以用来关联出库订单
///
[Display(Name ="可以用来关联出库订单")]
[MaxLength(100)]
[Column(TypeName="nvarchar(100)")]
public string containerhead_requstkey { get; set; }
///
///托盘重量
///
[Display(Name ="托盘重量")]
[MaxLength(100)]
[Column(TypeName="nvarchar(100)")]
public string containerhead_palletweight { get; set; }
}
}