GetIBBagLabelParam.cs 334 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace XYY.Api.Order.Model.Order
  6. {
  7. public class GetIBBagLabelParam
  8. {
  9. public List<int> BoxIds { get; set; }
  10. }
  11. public class CancelIBBagLabelParam
  12. {
  13. public List<int> BoxIds { get; set; }
  14. }
  15. }