|
@@ -0,0 +1,117 @@
|
|
|
+package com.huimv.production.service.impl;
|
|
|
+
|
|
|
+
|
|
|
+import com.huimv.production.domain.WarningParameter;
|
|
|
+import com.huimv.production.repo.WarningParameterEntityRepo;
|
|
|
+import com.huimv.production.result.Result;
|
|
|
+import com.huimv.production.result.ResultStatus;
|
|
|
+import com.huimv.production.service.WarningParameterService;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+import org.springframework.util.StringUtils;
|
|
|
+
|
|
|
+import java.util.HashMap;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author yinhao
|
|
|
+ * @since 2021/5/28 09:41
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class WarningParameterServiceImpl implements WarningParameterService {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private WarningParameterEntityRepo rep;
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Result add(WarningParameter entity) {
|
|
|
+ if (entity == null) {
|
|
|
+ return new Result(10002, ResultStatus.addNull);
|
|
|
+ }
|
|
|
+
|
|
|
+ Double thresholdValue = entity.getThresholdValue();
|
|
|
+ if (StringUtils.isEmpty(entity.getParameterName())) {
|
|
|
+ return new Result(10003, "参数名称不能为空!");
|
|
|
+ }
|
|
|
+ if (thresholdValue == null || thresholdValue < 0) {
|
|
|
+ return new Result(10003, "阈值有误,请检查!");
|
|
|
+ }
|
|
|
+ try {
|
|
|
+ rep.save(entity);
|
|
|
+ return new Result(10000, ResultStatus.addSuccess);
|
|
|
+ } catch (Exception e) {
|
|
|
+ return new Result(10001, ResultStatus.addFailed);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Result remove(Integer[] ids) {
|
|
|
+ if (ids == null || ids.length == 0) {
|
|
|
+ return new Result(10002, ResultStatus.deleteNull);
|
|
|
+ }
|
|
|
+ try {
|
|
|
+ for (Integer id : ids) {
|
|
|
+ rep.deleteById(id);
|
|
|
+ }
|
|
|
+ return new Result(10000, ResultStatus.deleteSuccess);
|
|
|
+ } catch (Exception e) {
|
|
|
+ return new Result(10001, ResultStatus.deleteFailed);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Result update(WarningParameter entity) {
|
|
|
+ if (entity == null) {
|
|
|
+ return new Result(10002, ResultStatus.updateNull);
|
|
|
+ }
|
|
|
+ Double thresholdValue = entity.getThresholdValue();
|
|
|
+ if (StringUtils.isEmpty(entity.getParameterName())) {
|
|
|
+ return new Result(10003, "参数名称不能为空!");
|
|
|
+ }
|
|
|
+ if (thresholdValue == null || thresholdValue < 0) {
|
|
|
+ return new Result(10003, "阈值有误,请检查!");
|
|
|
+ }
|
|
|
+ try {
|
|
|
+ rep.save(entity);
|
|
|
+ return new Result(10000, ResultStatus.updateSuccess);
|
|
|
+ } catch (Exception e) {
|
|
|
+ return new Result(10001, ResultStatus.updateFailed);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Result findAll(String name ,Integer pageNum , Integer pageSize) {
|
|
|
+ try {
|
|
|
+ Map map = new HashMap(16);
|
|
|
+ int size = rep.findAll().size() ;
|
|
|
+ if (pageNum == null) {
|
|
|
+ pageNum = 1;
|
|
|
+ }
|
|
|
+ if (pageSize == null) {
|
|
|
+ pageSize = 10;
|
|
|
+ }
|
|
|
+ if (name == null ) {
|
|
|
+ name = "";
|
|
|
+ }
|
|
|
+ Integer startPage = (pageNum-1) * pageSize;
|
|
|
+ List<WarningParameter> all = rep.findAll(name,startPage,pageSize);
|
|
|
+ map.put("total",size);
|
|
|
+ map.put("totalPageNum",(size + pageSize - 1) / pageSize);
|
|
|
+ map.put("data",all);
|
|
|
+ return new Result(10000,ResultStatus.findSuccess,map);
|
|
|
+ }catch (Exception e){
|
|
|
+ return new Result(10001,ResultStatus.findFailed,null);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Result findAllById(Integer id) {
|
|
|
+ try {
|
|
|
+ WarningParameter entity = rep.findById(id).get();
|
|
|
+ return new Result(10000,ResultStatus.findSuccess,entity);
|
|
|
+ }catch (Exception e){
|
|
|
+ return new Result(10001,ResultStatus.findFailed,null);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|