ProductOrderDto.php 179 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 订单信息
  4. * @author auto create
  5. */
  6. class ProductOrderDto
  7. {
  8. /**
  9. * 订单编码
  10. **/
  11. public $number;
  12. /**
  13. * 订单状态
  14. **/
  15. public $status;
  16. }
  17. ?>