namespace yunneiWCS.ORM
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("inStockOrder")]
|
public partial class inStockOrder
|
{
|
[Key]
|
public int orderCodeId { get; set; }
|
|
[StringLength(50)]
|
public string orderCode { get; set; }
|
|
[StringLength(50)]
|
public string productCode { get; set; }
|
|
[StringLength(50)]
|
public string productName { get; set; }
|
|
[StringLength(50)]
|
public string supplier { get; set; }
|
|
public int? quantity { get; set; }
|
|
[StringLength(50)]
|
public string containerCode { get; set; }
|
|
public int? orderType { get; set; }
|
|
[StringLength(50)]
|
public string creator { get; set; }
|
|
public DateTime? createDate { get; set; }
|
|
public byte? status { get; set; }
|
|
[StringLength(10)]
|
public string siteCode { get; set; }
|
|
[StringLength(100)]
|
public string version { get; set; }
|
|
[StringLength(100)]
|
public string toStieCode { get; set; }
|
}
|
}
|