12345678910111213141516171819202122 |
- using NXWMS.Client.Model.AppModels.Condition.Common;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NXWMS.Client.Model.AppModels.Condition.OutStock
- {
- public class WmsOutInvoiceSearchMd : DataPageMd
- {
- public string InvoiceNoMsg { get; set; }
- public string SourceNoMsg { get; set; }
- public string MaterielMsg { get; set; }
- public string InvoiceType { get; set; }
- public string InvoiceStatus { get; set; }
- public string SupplierMsg { get; set; }
- public string StartCreateTime { get; set; }
- public string EndCreateTime { get; set; }
- public string StartInvoiceEndTime { get; set; }
- public string EndInvoiceEndTime { get; set; }
- }
- }
|