| 1234567891011121314151617181920212223242526272829 | <?phpnamespace Cas\Dao;use KIF\Dao\DBAgileDev;use KIF\Core\Request;/** *  * 用户反馈 *    * @author rabin * */class LotteryUserFeedback extends DBAgileDev {	protected $tableName = 'lottery_user_feedback';		/**	 * 数据库里的真实字段	 * @var array	 */	protected $other_field = array(		'events_id',		'lottery_data_id',		'uid',		'status',	);	}
 |