LotteryEventsVoteUserLog.class.php 425 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace Cas\Dao;
  3. use KIF\Dao\DBAgileDev;
  4. use KIF\Core\Request;
  5. use KIF\Cache\Memcached;
  6. /**
  7. *
  8. * 活动[投票用户日志]
  9. *
  10. * @author lihuanchun@qq.com
  11. *
  12. */
  13. class LotteryEventsVoteUserLog extends DBAgileDev {
  14. protected $tableName = 'lottery_events_vote_user_log';
  15. /**
  16. * 数据库里的真实字段
  17. * @var array
  18. */
  19. protected $other_field = array(
  20. 'events_id',
  21. 'vote_id',
  22. 'uid'
  23. );
  24. }