|
|
using System; using System.Collections.Generic; using System.Linq; using System.Text;
namespace ICSSoft.Entity { public class ICSRdrecord11 { public string IssueCode { get; set; } public string User { get; set; } public DateTime MTime { get; set; } public string DepCode { get; set; } public string WHCode { get; set; } public string SourceType { get; set; } public string SourceCode { get; set; } public string MODetailID { get; set; } public string ID { get; set; } public List<rdrecords11> details = new List<rdrecords11>(); } public class rdrecords11 { public string Sequence { get; set; } public string InvCode { get; set; } public decimal Quantity { get; set; } public decimal Amount { get; set; } public string SourceDetailID { get; set; } } }
|