|
@@ -5,7 +5,9 @@ namespace catchAdmin\hydraulic\controller;
|
|
|
use catcher\base\CatchRequest as Request;
|
|
|
use catcher\CatchResponse;
|
|
|
use catcher\base\CatchController;
|
|
|
-use catchAdmin\hydraulic\model\Maintenance as maintenanceModel;
|
|
|
+use catchAdmin\hydraulic\model\maintenanceMapper as maintenanceModel;
|
|
|
+use catcher\base\CatchRequest;
|
|
|
+use think\facade\Db;
|
|
|
|
|
|
class Maintenance extends CatchController
|
|
|
{
|
|
@@ -33,6 +35,15 @@ class Maintenance extends CatchController
|
|
|
*/
|
|
|
public function save(Request $request) : \think\Response
|
|
|
{
|
|
|
+ //校验是否重复 value 是否重复
|
|
|
+ $data = $request->post();
|
|
|
+ $where[] = ["device_type",'=',$data['device_type']];
|
|
|
+ $where[] = ['value','=',$data["value"]];
|
|
|
+ $bool = Db::name("maintenancemapper")->where($where)->find();
|
|
|
+ if(!empty($bool))
|
|
|
+ {
|
|
|
+ return CatchResponse::fail('唯一标识重复');
|
|
|
+ };
|
|
|
return CatchResponse::success($this->maintenanceModel->storeBy($request->post()));
|
|
|
}
|
|
|
|
|
@@ -53,7 +64,17 @@ class Maintenance extends CatchController
|
|
|
* @param $id
|
|
|
*/
|
|
|
public function update(Request $request, $id) : \think\Response
|
|
|
- {
|
|
|
+ {
|
|
|
+ $data = $request->post();
|
|
|
+ $where[] = ["device_type",'=',$data['device_type']];
|
|
|
+ $where[] = ['value','=',$data["value"]];
|
|
|
+ $where[] =['id','<>',$id];
|
|
|
+ $bool = Db::name("maintenancemapper")->where($where)->find();
|
|
|
+ if(!empty($bool))
|
|
|
+ {
|
|
|
+ return CatchResponse::fail('唯一标识重复');
|
|
|
+ };
|
|
|
+
|
|
|
return CatchResponse::success($this->maintenanceModel->updateBy($id, $request->post()));
|
|
|
}
|
|
|
|
|
@@ -64,6 +85,6 @@ class Maintenance extends CatchController
|
|
|
*/
|
|
|
public function delete($id) : \think\Response
|
|
|
{
|
|
|
- return CatchResponse::success($this->maintenanceModel->deleteBy($id));
|
|
|
+ return CatchResponse::success($this->maintenanceModel->deleteBy($id,true));
|
|
|
}
|
|
|
}
|