1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace NXWMS.Model.AppModels.Result.ERP
- {
- public class InboundDetail
- {
- public string MaterialCode { get; set; }
- public decimal Qty { get; set; }
- public int SourceDtlId { get; set; }
- public string BinCode { get; set; }
- }
- }
|