DrawPdfLabelRequest.cs 562 B

12345678910111213141516171819202122232425262728293031
  1. using System.Collections.Generic;
  2. using XYY.Model.Standard.Channel;
  3. using XYY.Model.Standard.Order;
  4. using XYY.Service.Standard.ChannelApi.Base;
  5. namespace XYY.Api.Order.Controllers
  6. {
  7. public class DrawPdfLabelRequest
  8. {
  9. public UploadResult result
  10. {
  11. get; set;
  12. }
  13. public Logistics_Channel channel
  14. {
  15. get; set;
  16. }
  17. public Order_Order order
  18. {
  19. get; set;
  20. }
  21. public List<Order_OrderGoods> goods
  22. {
  23. get; set;
  24. }
  25. }
  26. }