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/WMS/INFO_FILES/VW_INFO_FILES.cs

178 lines
4.6 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_INFO_FILES")]
public class VW_INFO_FILES:BaseEntity
{
/// <summary>
///业务名称
/// </summary>
[Display(Name ="业务名称")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string PWORKTYPE { get; set; }
/// <summary>
///关联业务编号
/// </summary>
[Display(Name ="关联业务编号")]
[MaxLength(500)]
[Column(TypeName="varchar(500)")]
public string PBSNO { get; set; }
/// <summary>
///提单号
/// </summary>
[Display(Name ="提单号")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string MBLNO { get; set; }
/// <summary>
///箱号
/// </summary>
[Display(Name ="箱号")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string CNTRNO { get; set; }
/// <summary>
///文件名称
/// </summary>
[Display(Name ="文件名称")]
[MaxLength(100)]
[Column(TypeName="varchar(100)")]
public string FILENAME { get; set; }
/// <summary>
///文件类型
/// </summary>
[Display(Name ="文件类型")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
[Required(AllowEmptyStrings=false)]
public string FILETYPE { get; set; }
/// <summary>
///图片
/// </summary>
[Display(Name ="图片")]
[MaxLength(500)]
[Column(TypeName="varchar(500)")]
public string IMGPATH { get; set; }
/// <summary>
///文件
/// </summary>
[Display(Name ="文件")]
[MaxLength(500)]
[Column(TypeName="varchar(500)")]
public string FILEPATH { get; set; }
/// <summary>
///上传时间
/// </summary>
[Display(Name ="上传时间")]
[Column(TypeName="datetime")]
public DateTime? UPLOADDATE { get; set; }
/// <summary>
///上传人
/// </summary>
[Display(Name ="上传人")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string UPLOADEMPLY { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="CreateID")]
[Column(TypeName="uniqueidentifier")]
public Guid? CreateID { get; set; }
/// <summary>
///建立时间
/// </summary>
[Display(Name ="建立时间")]
[Column(TypeName="datetime")]
public DateTime? CreateDate { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="Creator")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string Creator { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="ModifyID")]
[Column(TypeName="uniqueidentifier")]
public Guid? ModifyID { get; set; }
/// <summary>
///修改时间
/// </summary>
[Display(Name ="修改时间")]
[Column(TypeName="datetime")]
public DateTime? ModifyDate { get; set; }
/// <summary>
///修改人
/// </summary>
[Display(Name ="修改人")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string Modifier { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="IMGFILE")]
[MaxLength(16)]
[Column(TypeName="image(16)")]
public string IMGFILE { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="PID")]
[Column(TypeName="uniqueidentifier")]
[Required(AllowEmptyStrings=false)]
public Guid PID { get; set; }
/// <summary>
///
/// </summary>
[Key]
[Display(Name ="GID")]
[Column(TypeName="uniqueidentifier")]
[Required(AllowEmptyStrings=false)]
public Guid GID { get; set; }
/// <summary>
///分公司
/// </summary>
[Display(Name ="分公司")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string CORPID { get; set; }
}
}