You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.7 KiB
50 lines
1.7 KiB
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
|
|
{
|
|
/// <summary>
|
|
/// 生产订单备料
|
|
/// </summary>
|
|
[Table("ICSMOPick")]
|
|
public class ICSMOPick
|
|
{
|
|
/// <summary>
|
|
/// 非自增主键
|
|
/// </summary>
|
|
[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; }
|
|
}
|
|
}
|