|
|
/*
|
|
|
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
|
|
*如果数据库字段发生变化,请在代码生器重新生成此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_YARD_ZHENHUA_CTNINFO")]
|
|
|
public class OP_YARD_ZHENHUA_CTNINFO:BaseEntity
|
|
|
{
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Key]
|
|
|
[Display(Name ="GID")]
|
|
|
[Column(TypeName="uniqueidentifier")]
|
|
|
[Required(AllowEmptyStrings=false)]
|
|
|
public Guid GID { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[Display(Name ="PID")]
|
|
|
[Column(TypeName="uniqueidentifier")]
|
|
|
[ParentId("")]
|
|
|
public Guid? PID { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///锁定
|
|
|
/// </summary>
|
|
|
[Display(Name ="锁定")]
|
|
|
[Column(TypeName="bit")]
|
|
|
public bool? ISLOCK { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///提箱地点
|
|
|
/// </summary>
|
|
|
[Display(Name ="提箱地点")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
public string LOADPLACE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///箱号
|
|
|
/// </summary>
|
|
|
[Display(Name ="箱号")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
public string CNTRNO { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///封号
|
|
|
/// </summary>
|
|
|
[Display(Name ="封号")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
public string SEALNO { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///箱型
|
|
|
/// </summary>
|
|
|
[Display(Name ="箱型")]
|
|
|
[MaxLength(4)]
|
|
|
[Column(TypeName="varchar(4)")]
|
|
|
public string CTNALL { 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 ="入场车牌号")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
public string TRUCKNO_IN { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///入场日期
|
|
|
/// </summary>
|
|
|
[Display(Name ="入场日期")]
|
|
|
[Column(TypeName="datetime")]
|
|
|
public DateTime? INDATE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///备注
|
|
|
/// </summary>
|
|
|
[Display(Name ="备注")]
|
|
|
[MaxLength(200)]
|
|
|
[Column(TypeName="varchar(200)")]
|
|
|
public string REMARK { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///剩余重量
|
|
|
/// </summary>
|
|
|
[Display(Name ="剩余重量")]
|
|
|
[Column(TypeName="numeric")]
|
|
|
public decimal? KGS_SY { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///剩余件数
|
|
|
/// </summary>
|
|
|
[Display(Name ="剩余件数")]
|
|
|
[Column(TypeName="numeric")]
|
|
|
public decimal? PKGS_SY { 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(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
public string AREACODE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///出场车牌号
|
|
|
/// </summary>
|
|
|
[Display(Name ="出场车牌号")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
public string TRUCKNO_OUT { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///出厂日期
|
|
|
/// </summary>
|
|
|
[Display(Name ="出厂日期")]
|
|
|
[Column(TypeName="datetime")]
|
|
|
public DateTime? OUTDATE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///箱使费到期日
|
|
|
/// </summary>
|
|
|
[Display(Name ="箱使费到期日")]
|
|
|
[Column(TypeName="datetime")]
|
|
|
public DateTime? CTNFREEENDDATE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///返箱地点
|
|
|
/// </summary>
|
|
|
[Display(Name ="返箱地点")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
public string RETURNPLACE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///返箱类型
|
|
|
/// </summary>
|
|
|
[Display(Name ="返箱类型")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
public string RETURNTYPE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///堆存天数
|
|
|
/// </summary>
|
|
|
[Display(Name ="堆存天数")]
|
|
|
[Column(TypeName="int")]
|
|
|
public int? DAYS { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///包装单位
|
|
|
/// </summary>
|
|
|
[Display(Name ="包装单位")]
|
|
|
[MaxLength(50)]
|
|
|
[Column(TypeName="varchar(50)")]
|
|
|
public string KINDPKGS { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///装箱是否完成
|
|
|
/// </summary>
|
|
|
[Display(Name ="装箱是否完成")]
|
|
|
[Column(TypeName="bit")]
|
|
|
public bool? CTNEND { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///修箱
|
|
|
/// </summary>
|
|
|
[Display(Name ="修箱")]
|
|
|
[Column(TypeName="bit")]
|
|
|
public bool? ISREPAIR { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///验箱
|
|
|
/// </summary>
|
|
|
[Display(Name ="验箱")]
|
|
|
[Column(TypeName="bit")]
|
|
|
public bool? ISCHECK { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///倒货次数
|
|
|
/// </summary>
|
|
|
[Display(Name ="倒货次数")]
|
|
|
|
|
|
[Column(TypeName= "numeric")]
|
|
|
public decimal? MOVE_COUNT { get; set; }
|
|
|
|
|
|
|
|
|
}
|
|
|
} |