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 Storage_AdjustList
|
{
|
[Key]
|
public int AdjustList_Id { get; set; }
|
|
public int Adjust_Id { get; set; }
|
|
public int Product_Id { get; set; }
|
|
[StringLength(500)]
|
public string ProductCode { get; set; }
|
|
[StringLength(500)]
|
public string ProductName { get; set; }
|
|
[StringLength(150)]
|
public string ProductSpec { get; set; }
|
|
[StringLength(500)]
|
public string PositionName { get; set; }
|
|
public decimal? ProductStorage { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? PurchasePrice { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? PurchaseMoney { get; set; }
|
|
public decimal? CheckQuantity { get; set; }
|
|
public decimal? ProfitQuantity { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? ProfitMoney { get; set; }
|
|
public decimal? LossQuantity { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? LossMoney { get; set; }
|
|
public decimal? LackStorage { get; set; }
|
|
public byte? SortingStatus { get; set; }
|
|
[StringLength(50)]
|
public string StorageStatus { get; set; }
|
|
[StringLength(50)]
|
public string ProductAttribute { get; set; }
|
|
public DateTime? ProduceDate { get; set; }
|
|
public int? ShelfLifeDay { get; set; }
|
|
[StringLength(50)]
|
public string PlateCode { get; set; }
|
|
[StringLength(50)]
|
public string BatchNumber { get; set; }
|
|
[StringLength(200)]
|
public string Remark { get; set; }
|
|
public int? CreateID { get; set; }
|
|
[StringLength(50)]
|
public string Creator { get; set; }
|
|
public DateTime? CreateDate { get; set; }
|
|
public int? ModifyID { get; set; }
|
|
[StringLength(50)]
|
public string Modifier { get; set; }
|
|
public DateTime? ModifyDate { get; set; }
|
|
[StringLength(50)]
|
public string ProductModel { get; set; }
|
|
public decimal? PlaceholderStorage { get; set; }
|
|
[StringLength(50)]
|
public string SmallUnit { get; set; }
|
|
public decimal? TotalWeight { get; set; }
|
|
public decimal? Weight { get; set; }
|
|
[StringLength(50)]
|
public string OriginPlace { get; set; }
|
|
public DateTime? inStorageDate { get; set; }
|
|
[StringLength(300)]
|
public string ContainerNo { get; set; }
|
|
public decimal? ProfitWeight { get; set; }
|
|
public string ExpandFields { get; set; }
|
|
public virtual Storage_Adjust Storage_Adjust { get; set; }
|
}
|
}
|