You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
440 B
30 lines
440 B
<?php
|
|
|
|
namespace app\admin\controller\qingdong\product;
|
|
|
|
use app\admin\controller\qingdong\Base;
|
|
|
|
|
|
/**
|
|
* 商品单位
|
|
*
|
|
* @icon fa fa-bars
|
|
*/
|
|
class Unit extends Base
|
|
{
|
|
|
|
/**
|
|
* Producttype模型对象
|
|
* @var \addons\qingdong\model\GoodsUnit
|
|
*/
|
|
protected $model = null;
|
|
|
|
public function _initialize()
|
|
{
|
|
parent::_initialize();
|
|
$this->model = new \addons\qingdong\model\GoodsUnit();
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|