LotteryEventsInvitation.class.php 424 B

12345678910111213141516171819202122232425262728293031
  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 LotteryEventsInvitation extends DBAgileDev {
  13. protected $tableName = 'lottery_events_invitation';
  14. /**
  15. * 数据库里的真实字段
  16. * @var array
  17. */
  18. protected $other_field = array(
  19. 'events_id',
  20. 'uid',
  21. 'user_name',
  22. 'phone',
  23. 'city',
  24. 'mail'
  25. );
  26. }