// +---------------------------------------------------------------------- namespace App\Http\Controllers; use App\Services\StoreRecordsService; /** * 库房商品出入库管理-控制器 * @author wesmiler * @since 2020/11/11 * Class StoreRecordsController * @package App\Http\Controllers */ class StoreRecordsController extends Backend { /** * 构造函数 * @author wesmiler * @since 2020/11/11 * StoreRecordsController constructor. */ public function __construct() { parent::__construct(); $this->service = new StoreRecordsService(); } /** * 获取分类选项列表 * @return array */ public function make(){ return $this->service->make(); } }