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/OP_WMS_FEEPAYINFO.cs

130 lines
3.4 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 = "OP_WMS_FEEPAYINFO")]
public class OP_WMS_FEEPAYINFO:BaseEntity
{
/// <summary>
///
/// </summary>
[Key]
[Display(Name ="GID")]
[Column(TypeName="uniqueidentifier")]
[Required(AllowEmptyStrings=false)]
public Guid GID { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="WMSID")]
[Column(TypeName="uniqueidentifier")]
[Required(AllowEmptyStrings=false)]
public Guid WMSID { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="WMSBASEID")]
[Column(TypeName="uniqueidentifier")]
[Required(AllowEmptyStrings=false)]
public Guid WMSBASEID { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="FEESTARTDATE")]
[Column(TypeName="datetime")]
[Required(AllowEmptyStrings=false)]
public DateTime FEESTARTDATE { get; set; }
/// <summary>
/// 应收仓储费对象
/// </summary>
[Display(Name ="ARCLIENTWMSOUT")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string ARCLIENTWMSOUT { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="APCLIENTWMSOUT")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string APCLIENTWMSOUT { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="ARCLIENTWMSIN")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string ARCLIENTWMSIN { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="APCLIENTWMSIN")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string APCLIENTWMSIN { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="ARCLIENTWMS_OUTDO")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string ARCLIENTWMS_OUTDO { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="APCLIENTWMS_OUTDO")]
[MaxLength(50)]
[Column(TypeName="varchar(50)")]
public string APCLIENTWMS_OUTDO { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="STORAGEUNITCOUNT")]
[Column(TypeName="numeric")]
public decimal? STORAGEUNITCOUNT { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="FEERATEWMSID")]
[Column(TypeName="uniqueidentifier")]
public Guid? FEERATEWMSID { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="FEEENDDATE")]
[Column(TypeName="datetime")]
public DateTime? FEEENDDATE { get; set; }
/// <summary>
///
/// </summary>
[Display(Name ="SOURCEDOID")]
[Column(TypeName="uniqueidentifier")]
public Guid? SOURCEDOID { get; set; }
}
}