namespace Warehouse.Models.whMS { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("tcontainer")] public partial class tcontainer { public long id { get; set; } [StringLength(45)] public string containerno { get; set; } [StringLength(45)] public string state { get; set; } [StringLength(45)] public string powergrade { get; set; } [StringLength(45)] public string color { get; set; } [StringLength(45)] public string igrade { get; set; } [StringLength(45)] public string celltype { get; set; } [StringLength(45)] public string finalgrade { get; set; } [StringLength(45)] public string cellqty { get; set; } [StringLength(45)] public string frame { get; set; } [StringLength(45)] public string jbox { get; set; } [StringLength(45)] public string bartype { get; set; } [StringLength(45)] public string modulespec { get; set; } [StringLength(45)] public string customno { get; set; } [StringLength(45)] public string materialcompany { get; set; } [StringLength(45)] public string plateno { get; set; } [StringLength(45)] public string driver { get; set; } [StringLength(45)] public string driverphone { get; set; } [StringLength(45)] public string drivertype { get; set; } [StringLength(45)] public string driveno { get; set; } //Μα΅₯ΊΕ add by xue lei on 2019-9-10 [StringLength(45)] public string billlading { get; set; } //·’»υΟδΊΕ add by xue lei on 2019-9-10 [StringLength(45)] public string shipmentcarton { get; set; } public int? count { get; set; } [StringLength(45)] public string shipmentuser { get; set; } [Required] [StringLength(45)] public string createuser { get; set; } public DateTime createtime { get; set; } public DateTime? shipmenttime { get; set; } public int? islimitconditionflag { get; set; } } }