|
|
/*
|
|
|
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
|
|
*如果数据库字段发生变化,请在代码生器重新生成此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_REP_JINKOUCHAIXIANG")]
|
|
|
public class VW_OP_YARD_REP_JINKOUCHAIXIANG:BaseEntity
|
|
|
{
|
|
|
/// <summary>
|
|
|
///业务编号
|
|
|
/// </summary>
|
|
|
[Key]
|
|
|
[Display(Name ="业务编号")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName= "varchar(50)")]
|
|
|
[Required(AllowEmptyStrings=false)]
|
|
|
public string BSNO { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///委托单位
|
|
|
/// </summary>
|
|
|
[Display(Name ="委托单位")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
public string CUSTOMERNAME { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///主提单号
|
|
|
/// </summary>
|
|
|
[Display(Name ="主提单号")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
public string MBLNO { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///品名
|
|
|
/// </summary>
|
|
|
[Display(Name ="品名")]
|
|
|
[MaxLength(200)]
|
|
|
[Column(TypeName="varchar(200)")]
|
|
|
public string GOODSNAME { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///接单日期
|
|
|
/// </summary>
|
|
|
[Display(Name ="接单日期")]
|
|
|
[Column(TypeName="datetime")]
|
|
|
public DateTime? ACCEPTDATE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///入场重量
|
|
|
/// </summary>
|
|
|
[Display(Name ="入场重量")]
|
|
|
[Column(TypeName="numeric")]
|
|
|
public decimal? KGS_YJ { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///入场件数
|
|
|
/// </summary>
|
|
|
[Display(Name ="入场件数")]
|
|
|
[Column(TypeName="numeric")]
|
|
|
public decimal? PKGS_YJ { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///出场重量
|
|
|
/// </summary>
|
|
|
[Display(Name ="出场重量")]
|
|
|
[Column(TypeName="numeric")]
|
|
|
public decimal? KGS_SJ { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///出场件数
|
|
|
/// </summary>
|
|
|
[Display(Name ="出场件数")]
|
|
|
[Column(TypeName="numeric")]
|
|
|
public decimal? PKGS_SJ { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///业务状态
|
|
|
/// </summary>
|
|
|
[Display(Name ="业务状态")]
|
|
|
[MaxLength(10)]
|
|
|
[Column(TypeName="varchar(10)")]
|
|
|
public string BILLSTATUS { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///应收金额
|
|
|
/// </summary>
|
|
|
[Display(Name ="应收金额")]
|
|
|
[Column(TypeName="numeric")]
|
|
|
public decimal? AMOUNT_DR { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///应付金额
|
|
|
/// </summary>
|
|
|
[Display(Name ="应付金额")]
|
|
|
[Column(TypeName="numeric")]
|
|
|
public decimal? AMOUNT_CR { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///利润
|
|
|
/// </summary>
|
|
|
[Display(Name ="利润")]
|
|
|
[Column(TypeName="numeric")]
|
|
|
public decimal? LIRUN { get; set; }
|
|
|
|
|
|
|
|
|
}
|
|
|
} |