|
...
|
...
|
@@ -29,14 +29,12 @@ class Extension2205ModuleController extends BaseController |
|
|
|
{
|
|
|
|
public function get2205List(){
|
|
|
|
$this->request->validate([
|
|
|
|
'module_id'=>'required',
|
|
|
|
'uuid'=>'required',
|
|
|
|
],[
|
|
|
|
'module_id.required' => '模块id不能为空',
|
|
|
|
'uuid.required' => 'uuid不能为空',
|
|
|
|
]);
|
|
|
|
$log2205Model = new Extension2205ModuleValueLog();
|
|
|
|
$lists = $log2205Model->list(['module_id'=>$this->param['module_id'],'uuid'=>$this->param['uuid']]);
|
|
|
|
$lists = $log2205Model->list(['module_id'=>1,'uuid'=>$this->param['uuid']]);
|
|
|
|
$this->response('success',Code::SUCCESS,$lists);
|
|
|
|
}
|
|
|
|
|
...
|
...
|
|