namespace wcftest.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class Sale_Order_History_Items
|
{
|
public long ID { get; set; }
|
|
public long Sale_Order_History_Id { get; set; }
|
|
[StringLength(100)]
|
public string OrderCode { get; set; }
|
|
[StringLength(100)]
|
public string TrackingNumber { get; set; }
|
|
[StringLength(100)]
|
public string SaleCode { get; set; }
|
|
[StringLength(100)]
|
public string SaleCodeItem { get; set; }
|
|
[StringLength(100)]
|
public string MaterailCode { get; set; }
|
|
[StringLength(100)]
|
public string MaterailName { get; set; }
|
|
[StringLength(100)]
|
public string StorageUnit { get; set; }
|
|
public decimal? QuantityOrder { get; set; }
|
|
public decimal? LackQuantity { get; set; }
|
|
public decimal? TemporaryQuantity { get; set; }
|
|
[StringLength(2000)]
|
public string Remark { get; set; }
|
|
[StringLength(128)]
|
public string Creator { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
|
[StringLength(128)]
|
public string LastModifier { get; set; }
|
|
public DateTime? LastModifyTime { get; set; }
|
}
|
}
|