旧版报表、仓库
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.
 
 
 
 
 

86 lines
2.1 KiB

namespace Warehouse.Models
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;
[Table("wh.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(300)]
public string condiction { get; set; }
[StringLength(45)]
public string CustomerNo { 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 DriveType { get; set; }
//add by xue lei on 2019-3-7
[StringLength(45)]
public string DriveNo { get; set; }
public int? Count { get; set; }
[StringLength(45)]
public string shipmentuser { get; set; }
[StringLength(45)]
public string createuser { get; set; }
public DateTime? createtime { get; set; }
public int? IsLimitConditionFlg { get; set; }
}
}