| 123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * pid的发放数据
- * @author auto create
- */
- class RightsSendRelationRptDto
- {
-
- /**
- * 日期
- **/
- public $biz_date;
-
- /**
- * 红包发放数量
- **/
- public $fund_num;
-
- /**
- * pid
- **/
- public $pid;
-
- /**
- * 红包使用次数
- **/
- public $use_num;
- }
- ?>
|