InboundDetail.cs 361 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NXWMS.Model.AppModels.Result.ERP
  6. {
  7. public class InboundDetail
  8. {
  9. public string MaterialCode { get; set; }
  10. public decimal Qty { get; set; }
  11. public int SourceDtlId { get; set; }
  12. public string BinCode { get; set; }
  13. }
  14. }