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/REPORT/VW_OP_REP_NOFEEWMS.cs

107 lines
2.9 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 = "VW_OP_REP_NOFEEWMS")]
public class VW_OP_REP_NOFEEWMS:BaseEntity
{
/// <summary>
///结算对象
/// </summary>
[Display(Name ="结算对象")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string CUSTOMERNAME { get; set; }
/// <summary>
///会计期间
/// </summary>
[Display(Name ="会计期间")]
[Column(TypeName="datetime")]
public DateTime? ACCDATE { 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 ="开始日期")]
[Column(TypeName="datetime")]
public DateTime? STARTDATE { get; set; }
/// <summary>
///结束日期
/// </summary>
[Display(Name ="结束日期")]
[Column(TypeName="datetime")]
public DateTime? ENDDATE { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="WMSID")]
[Column(TypeName="uniqueidentifier")]
public Guid? WMSID { get; set; }
/// <summary>
///
/// </summary>
[Key]
[Display(Name ="WMSDUIDETAILID")]
[Column(TypeName="uniqueidentifier")]
[Required(AllowEmptyStrings=false)]
public Guid WMSDUIDETAILID { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="WMSDUIID")]
[Column(TypeName="uniqueidentifier")]
public Guid WMSDUIID { get; set; }
[Display(Name = "REMARK")]
[Column(TypeName = "varchar(500)")]
public string REMARK { get; set; }
/// <summary>
///仓库
/// </summary>
[Display(Name = "仓库")]
[MaxLength(20)]
[Column(TypeName = "varchar(20)")]
public string STOREHOUSE { get; set; }
/// <summary>
///库位
/// </summary>
[Display(Name = "库位")]
[MaxLength(50)]
[Column(TypeName = "varchar(50)")]
public string AREACODE { get; set; }
}
}