123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace XYY.Api.Order.Model.Order
- {
- public class GetIBBagLabelParam
- {
- public List<int> BoxIds { get; set; }
- }
- public class CancelIBBagLabelParam
- {
- public List<int> BoxIds { get; set; }
- }
- }
|