InboundDetail.cs 344 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace NX.ERP.BLL.Model
  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. }