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 IDX_PickToLight
|
{
|
[Key]
|
public int Row_Id { get; set; }
|
|
public long? Order_Id { get; set; }
|
|
public long? OrderPrintList_Id { get; set; }
|
|
[StringLength(50)]
|
public string OrderCode { get; set; }
|
|
public long? OrderList_Id { get; set; }
|
|
public int? Placeholder_Id { get; set; }
|
|
public int? OrderPrint_Id { get; set; }
|
|
[StringLength(50)]
|
public string OrderPrintCode { get; set; }
|
|
[StringLength(20)]
|
public string FMLocation { get; set; }
|
|
public int? IsUpload { get; set; }
|
|
public long? Product_Id { get; set; }
|
|
[StringLength(50)]
|
public string ProductCode { get; set; }
|
|
[StringLength(500)]
|
public string ProductName { get; set; }
|
|
[StringLength(300)]
|
public string ProductModel { get; set; }
|
|
public string ProductSpec { get; set; }
|
|
public int? QuantityOrder { get; set; }
|
|
public decimal? UnitConvert { get; set; }
|
|
[StringLength(50)]
|
public string UnitConvertText { get; set; }
|
|
[StringLength(50)]
|
public string TaskType { get; set; }
|
|
[StringLength(10)]
|
public string TaskProcess { get; set; }
|
|
public DateTime? CreateDate { get; set; }
|
|
public int? UserProduct_Id { get; set; }
|
|
[StringLength(50)]
|
public string PositionName { get; set; }
|
|
[StringLength(50)]
|
public string SmallUnit { get; set; }
|
|
[StringLength(50)]
|
public string BigUnit { get; set; }
|
|
public int? OrignHolderStorage { get; set; }
|
|
public int? TOQty_Each { get; set; }
|
|
public int? Storage_Id { get; set; }
|
|
[StringLength(50)]
|
public string StorageName { get; set; }
|
|
public string ExpandFields { get; set; }
|
}
|
}
|