LotteryEventsUserPrizeData.class.php 401 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. namespace Cas\Dao;
  3. use KIF\Dao\DBAgileDev;
  4. use KIF\Core\Request;
  5. /**
  6. *
  7. * 用户获奖奖品列表
  8. *
  9. * @author lihuanchun@qq.com
  10. *
  11. */
  12. class LotteryEventsUserPrizeData extends DBAgileDev {
  13. protected $tableName = 'lottery_events_user_prize_data';
  14. /**
  15. * 数据库里的真实字段
  16. * @var array
  17. */
  18. protected $other_field = array(
  19. 'events_id',
  20. 'uid',
  21. 'prize_id',
  22. );
  23. }