| 12345678910111213141516171819202122232425262728293031 | <?phpnamespace Cas\Dao;use KIF\Dao\DBAgileDev;use KIF\Core\Request;/** *  * 平台   => 公告  *    * @author lihuanchun@qq.com * */class PlatformBulletin extends DBAgileDev {	protected $tableName = 'platform_bulletin';		/**	 * 数据库里的真实字段	 * @var array	 */	protected $other_field = array(		'title',		'content',		'operator_uid'	);		public function __construct($master_flag = 'backend') {		parent::__construct($master_flag);	}}
 |