namespace yunneiPda.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("outStockList")]
|
public partial class outStockList
|
{
|
public int id { get; set; }
|
|
[StringLength(50)]
|
public string outStockOrder { get; set; }
|
|
[StringLength(50)]
|
public string materialCode { get; set; }
|
|
[StringLength(50)]
|
public string materialName { get; set; }
|
|
public int? quantity { get; set; }
|
|
[StringLength(50)]
|
public string creator { get; set; }
|
|
public DateTime? createTime { get; set; }
|
|
[StringLength(100)]
|
public string version { get; set; }
|
|
public int? outStockOrderStatus { get; set; }
|
|
[StringLength(50)]
|
public string outStockOrderStatusName { get; set; }
|
|
[StringLength(500)]
|
public string remark { get; set; }
|
|
[StringLength(50)]
|
public string lastModifier { get; set; }
|
|
public DateTime? LastModifyTime { get; set; }
|
|
public int? materialType { get; set; }
|
|
[StringLength(50)]
|
public string materialTypeName { get; set; }
|
|
[StringLength(50)]
|
public string station { get; set; }
|
|
[StringLength(100)]
|
public string createListCode { get; set; }
|
}
|
}
|