|
@@ -40,7 +40,7 @@ class Maintenance extends CatchController
|
|
|
$data = $request->post();
|
|
|
$where[] = ["device_type",'=',$data['device_type']];
|
|
|
$where[] = ['value','=',$data["value"]];
|
|
|
- $bool = Db::name("maintenancemapper")->where($where)->find();
|
|
|
+ $bool = Db::name("maintenance_mapper")->where($where)->find();
|
|
|
if(!empty($bool))
|
|
|
{
|
|
|
return CatchResponse::fail('唯一标识重复');
|
|
@@ -70,7 +70,7 @@ class Maintenance extends CatchController
|
|
|
$where[] = ["device_type",'=',$data['device_type']];
|
|
|
$where[] = ['value','=',$data["value"]];
|
|
|
$where[] =['id','<>',$id];
|
|
|
- $bool = Db::name("maintenancemapper")->where($where)->find();
|
|
|
+ $bool = Db::name("maintenance_mapper")->where($where)->find();
|
|
|
if(!empty($bool))
|
|
|
{
|
|
|
return CatchResponse::fail('唯一标识重复');
|