You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
2.3 KiB
90 lines
2.3 KiB
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; }
|
|
}
|
|
}
|
|
|