123456789101112131415161718192021222324252627282930 |
- <?php
- namespace Cas\Dao;
- use KIF\Dao\DBAgileDev;
- use KIF\Core\Request;
- use KIF\Cache\Memcached;
- class LotteryEventsVoteUserLog extends DBAgileDev {
- protected $tableName = 'lottery_events_vote_user_log';
-
-
-
- protected $other_field = array(
- 'events_id',
- 'vote_id',
- 'uid'
- );
-
- }
|