|
|
/*
|
|
|
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
|
|
*如果数据库字段发生变化,请在代码生器重新生成此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_SPEREP_IO")]
|
|
|
public class OP_WMS_SPEREP_IO:BaseEntity
|
|
|
{
|
|
|
/// <summary>
|
|
|
///ID
|
|
|
/// </summary>
|
|
|
[Key]
|
|
|
[Display(Name ="ID")]
|
|
|
[Column(TypeName="int")]
|
|
|
[Required(AllowEmptyStrings=false)]
|
|
|
public int ID { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="REPORTID")]
|
|
|
[Column(TypeName="uniqueidentifier")]
|
|
|
public Guid? REPORTID { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///仓库
|
|
|
/// </summary>
|
|
|
[Display(Name ="仓库")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
public string STOREHOUSE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///客户名称
|
|
|
/// </summary>
|
|
|
[Display(Name ="客户名称")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
public string CUSTOMERNAME { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///日期
|
|
|
/// </summary>
|
|
|
[Display(Name ="日期")]
|
|
|
[Column(TypeName="datetime")]
|
|
|
public DateTime? DODATE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///入库
|
|
|
/// </summary>
|
|
|
[Display(Name ="入库")]
|
|
|
[Column(TypeName="numeric")]
|
|
|
public decimal? COUNT_IN { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///出库
|
|
|
/// </summary>
|
|
|
[Display(Name ="出库")]
|
|
|
[Column(TypeName="numeric")]
|
|
|
public decimal? COUNT_OUT { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///倒库
|
|
|
/// </summary>
|
|
|
[Display(Name ="倒库")]
|
|
|
[Column(TypeName="numeric")]
|
|
|
public decimal? COUNT_MOVE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///结存
|
|
|
/// </summary>
|
|
|
[Display(Name ="结存")]
|
|
|
[Column(TypeName="numeric")]
|
|
|
public decimal? COUNT_REMAIN { get; set; }
|
|
|
|
|
|
|
|
|
}
|
|
|
} |