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/VW_OP_YARD_CTNMNG_STOREAREA...

116 lines
3.0 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 = "VW_OP_YARD_CTNMNG_STOREAREAINFO")]
public class VW_OP_YARD_CTNMNG_STOREAREAINFO:BaseEntity
{
/// <summary>
///
/// </summary>
[Key]
[Display(Name ="GID")]
[Column(TypeName="uniqueidentifier")]
[Required(AllowEmptyStrings=false)]
public Guid GID { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="AREACODE")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
[Required(AllowEmptyStrings=false)]
public string AREACODE { get; set; }
/// <summary>
///库位
/// </summary>
[Display(Name ="库位")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string AREANAME { get; set; }
/// <summary>
///仓库
/// </summary>
[Display(Name ="仓库")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string STOREHOUSENAME { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="PID1")]
[Column(TypeName="uniqueidentifier")]
public Guid? PID1 { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="PID2")]
[Column(TypeName="uniqueidentifier")]
public Guid? PID2 { get; set; }
/// <summary>
///业务来源
/// </summary>
[Display(Name ="业务来源")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string SOURCETYPE { get; set; }
/// <summary>
///箱号
/// </summary>
[Display(Name ="箱号")]
[MaxLength(20)]
[Column(TypeName="varchar(20)")]
public string CNTRNO { get; set; }
/// <summary>
///客户名称
/// </summary>
[Display(Name ="客户名称")]
[MaxLength(36)]
[Column(TypeName="varchar(36)")]
public string CUSTOMERNAME { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="INFOCLIENTGID")]
[MaxLength(36)]
[Column(TypeName="varchar(36)")]
public string INFOCLIENTGID { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="STOREHOUSEAREACODE")]
[MaxLength(4)]
[Column(TypeName="varchar(4)")]
public string STOREHOUSEAREACODE { get; set; }
/// <summary>
///存箱日期
/// </summary>
[Display(Name ="存箱日期")]
[Column(TypeName="datetime")]
public DateTime? INDATE { get; set; }
}
}