using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Dapper.Contrib.Extensions; namespace NFine.Application.Entity { /// /// 补料单 /// [Table("ICSMOReplenishment")] public class ICSMOReplenishment { /// /// 非自增主键 /// [ExplicitKey] public string ID { set; get; } public string ReplenishmentCode { 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 ReplenishmentID { set; get; } public string ReplenishmentDetailID { 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; } } }