| 12345678910111213141516171819202122232425262728 | 
							- <?php
 
- namespace Cas\Dao;
 
- use KIF\Dao\DBAgileDev;
 
- use KIF\Core\Request;
 
- /**
 
-  *
 
-  * 活动用户参与日志
 
-  *
 
-  * @author lihuanchun@qq.com
 
-  *        
 
-  */
 
- class LotteryUserHelpLog extends DBAgileDev {
 
- 	protected $tableName = 'lottery_events_help_user_log';
 
- 	
 
- 	/**
 
- 	 * 数据库里的真实字段
 
- 	 * 
 
- 	 * @var array
 
- 	 */
 
- 	protected $other_field = array (
 
- 			'events_id',
 
- 			'uid',
 
- 			'help_id',
 
- 	);
 
- }
 
 
  |