using Dapper.Contrib.Extensions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace NFine.Application.Entity
{
///
/// 生产订单备料
///
[Table("ICSMOPick")]
public class ICSMOPick
{
///
/// 非自增主键
///
[ExplicitKey]
public string ID { set; get; }
public string MODetailID { set; get; }
public string PickID { set; get; }
public string ParentPickID { set; get; }
public decimal ParentQuantity { set; get; }
public decimal ParentAmount { set; get; }
public string Sequence { set; get; }
public string InvCode { set; get; }
public decimal Quantity { set; get; }
public decimal Amount { set; get; }
public decimal IssueQuantity { set; get; }
public string WHCode { set; get; }
public string SupplyType { set; get; }
public string ExtensionID { set; get; }
public string MUSER { set; get; }
public string MUSERName { set; get; }
public DateTime MTIME { set; get; }
public string WorkPoint { set; get; }
public string EATTRIBUTE1 { set; get; }
public string EATTRIBUTE2 { set; get; }
public string EATTRIBUTE3 { set; get; }
public string EATTRIBUTE4 { set; get; }
public string EATTRIBUTE5 { set; get; }
public string EATTRIBUTE6 { set; get; }
public string EATTRIBUTE7 { set; get; }
public string EATTRIBUTE8 { set; get; }
public string EATTRIBUTE9 { set; get; }
public string EATTRIBUTE10 { set; get; }
}
}