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("ICSMOIssue")] public class ICSMOIssue { /// /// 非自增主键 /// [ExplicitKey] public string ID { set; get; } public string IssueCode { set; get; } public string Sequence { set; get; } public string SourceCode { set; get; } public string SourceSequence { 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 Type { set; get; } public string Status { set; get; } public string CreatePerson { set; get; } public DateTime CreateDateTime { set; get; } public string IssueID { set; get; } public string IssueDetailID { set; get; } public string PickID { set; get; } public string ApplyDetailID { 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 EATTRIBUTE { 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; } } }