ConsultItemModel.php 308 B

123456789101112131415
  1. <?php
  2. namespace common\expand\alipay\voucher\model;
  3. use common\expand\alipay\AlipayModel;
  4. /**
  5. * @property string $item_id 商品id
  6. * @property string $quantity 商品数量
  7. * @property string $price 商品单价,单位为元,最多2位小数
  8. */
  9. class ConsultItemModel extends AlipayModel
  10. {
  11. }