123456789101112131415161718192021222324252627282930 |
- <?php
- namespace Cas\Dao;
- use KIF\Dao\DBAgileDev;
- use KIF\Core\Request;
- use KIF\Cache\Memcached;
- /**
- *
- * 活动[投票用户日志]
- *
- * @author lihuanchun@qq.com
- *
- */
- class LotteryEventsVoteUserLog extends DBAgileDev {
- protected $tableName = 'lottery_events_vote_user_log';
-
-
- /**
- * 数据库里的真实字段
- * @var array
- */
- protected $other_field = array(
- 'events_id',
- 'vote_id',
- 'uid'
- );
-
- }
|