21 lines
571 B
PHP
21 lines
571 B
PHP
<?php
|
|
namespace app\admin\controller\nk;
|
|
|
|
|
|
/**
|
|
* 房屋装修
|
|
* -- 推荐商家
|
|
*/
|
|
class HouseDecorationCompany extends ArticleCommon{
|
|
function __construct()
|
|
{
|
|
$this->category_id = 372;
|
|
$this->url=[
|
|
'/admin/nk.house_decoration_company/index?category_id='.$this->category_id,
|
|
'/admin/nk.house_decoration_company/add',
|
|
'/admin/nk.house_decoration_company/edit',
|
|
'/admin/nk.house_decoration_company/del',
|
|
'/admin/nk.house_decoration_company/read',
|
|
];
|
|
}
|
|
} |