WmsInPutAwayPalletMsgResult.cs 410 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NXWMS.Model.AppModels.Result.Instock
  7. {
  8. public class WmsInPutAwayPalletMsgResult
  9. {
  10. public string BillNo { get; set; }
  11. public string TRAY_CODE { get; set; }
  12. public string PALLET_CODE { get; set; }
  13. public string BillType { get; set; }
  14. }
  15. }