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

55 lines
1.3 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.tlocationcondition")]
public partial class tlocationcondition
{
public long id { get; set; }
public long storagelocationid { 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(1)]
public string status { get; set; }
[StringLength(45)]
public string createuser { get; set; }
public DateTime? createtime { get; set; }
}
}