namespace iWareLog.ORM
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("InOutStorageDetail")]
|
public partial class InOutStorageDetail
|
{
|
public int id { get; set; }
|
|
public int formplaceid { get; set; }
|
|
[Required]
|
[StringLength(20)]
|
public string fromplacecode { get; set; }
|
|
public int? toplaceid { get; set; }
|
|
[StringLength(20)]
|
public string toplacecode { get; set; }
|
|
public DateTime createtime { get; set; }
|
|
public DateTime? updatetime { get; set; }
|
|
public int type { get; set; }
|
|
public int? equipid { get; set; }
|
|
[StringLength(50)]
|
public string equipname { get; set; }
|
|
public int? materialid { get; set; }
|
|
[StringLength(50)]
|
public string materialcode { get; set; }
|
}
|
}
|