| 12345678910111213141516171819202122232425262728293031 | <?phpnamespace Cas\Dao;use KIF\Dao\DBAgileDev;use KIF\Core\Request;/** *  * 邀请函申请信息表 *    * @author lihuanchun@qq.com * */class LotteryEventsInvitation extends DBAgileDev {	protected $tableName = 'lottery_events_invitation';		/**	 * 数据库里的真实字段	 * @var array	 */	protected $other_field = array(		'events_id',		'uid',		'user_name',		'phone',		'city',		'mail'	);	}
 |