1
4 天以前 82374fe4b32d58956810f445b7889f1a370f1ab9
src/main/java/com/zy/asrs/controller/BasDevpErrorLogController.java
@@ -2,6 +2,7 @@
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.baomidou.mybatisplus.plugins.Page;
@@ -16,10 +17,13 @@
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
import java.util.*;
@RestController
public class BasDevpErrorLogController extends BaseController {
    protected static final String RANGE_TIME_LINK = " - ";
    @Autowired
    private BasDevpErrorLogService basDevpErrorLogService;
@@ -30,7 +34,74 @@
        return R.ok(basDevpErrorLogService.selectById(String.valueOf(id)));
    }
    @RequestMapping(value = "/basDevpErrorLog/list/auth")
    @ManagerAuth
    public R list(@RequestParam(defaultValue = "1")Integer curr,
                  @RequestParam(defaultValue = "10")Integer limit,
                  @RequestParam(required = false)String orderByField,
                  @RequestParam(required = false)String orderByType,
                  @RequestParam(required = false)String condition,
                  @RequestParam Map<String, Object> param){
        EntityWrapper<BasDevpErrorLog> wrapper = new EntityWrapper<>();
        excludeTrash(param);
        convert(param, wrapper);
        allLike(BasDevpErrorLog.class, param.keySet(), wrapper, condition);
        if (!Cools.isEmpty(orderByField)){wrapper.orderBy(humpToLine(orderByField), "asc".equals(orderByType));}
        return R.ok(basDevpErrorLogService.selectPage(new Page<>(curr, limit), wrapper));
    }
    /**
     * 全字段模糊搜索
     * @param cls 模型类
     * @param set 排除字段集合
     * @param condition 搜索内容
     */
    protected <T> void allLike(Class<T> cls, Set<String> set, EntityWrapper<T> wrapper, String condition){
        if (Cools.isEmpty(condition)) {
            return;
        }
        List<String> columns = new ArrayList<>();
        for (Field field :Cools.getAllFields(cls)){
            if (Modifier.isFinal(field.getModifiers())
                    || Modifier.isStatic(field.getModifiers())
                    || Modifier.isTransient(field.getModifiers())){
                continue;
            }
            String column = null;
            if (field.isAnnotationPresent(TableField.class)) {
                column = field.getAnnotation(TableField.class).value();
            }
            if (Cools.isEmpty(column)) {
                column = field.getName();
            }
            if (!set.contains(column)) {
                columns.add(column);
            }
        }
        if (columns.isEmpty()) {
            return;
        }
        for (int i=0;i<columns.size();i++){
            if (i==0){
                wrapper.andNew();
            } else {
                wrapper.or();
            }
            wrapper.like(columns.get(i), condition);
        }
    }
    private <T> void convert(Map<String, Object> map, EntityWrapper<T> wrapper){
        for (Map.Entry<String, Object> entry : map.entrySet()){
            String val = String.valueOf(entry.getValue());
            if (val.contains(RANGE_TIME_LINK)){
                String[] dates = val.split(RANGE_TIME_LINK);
                wrapper.ge(entry.getKey(), DateUtils.convert(dates[0]));
                wrapper.le(entry.getKey(), DateUtils.convert(dates[1]));
            } else {
                wrapper.like(entry.getKey(), val);
            }
        }
    }
    @RequestMapping(value = "/basDevpErrorLog/add/auth")
    @ManagerAuth
@@ -39,6 +110,15 @@
        return R.ok();
    }
   @RequestMapping(value = "/basDevpErrorLog/update/auth")
   @ManagerAuth
    public R update(BasDevpErrorLog basDevpErrorLog){
        if (Cools.isEmpty(basDevpErrorLog) || null==basDevpErrorLog.getId()){
            return R.error();
        }
        basDevpErrorLogService.updateById(basDevpErrorLog);
        return R.ok();
    }
    @RequestMapping(value = "/basDevpErrorLog/delete/auth")
    @ManagerAuth
@@ -49,6 +129,32 @@
        return R.ok();
    }
    @RequestMapping(value = "/basDevpErrorLog/export/auth")
    @ManagerAuth
    public R export(@RequestBody JSONObject param){
        EntityWrapper<BasDevpErrorLog> wrapper = new EntityWrapper<>();
        List<String> fields = JSONObject.parseArray(param.getJSONArray("fields").toJSONString(), String.class);
        Map<String, Object> map = excludeTrash(param.getJSONObject("basDevpErrorLog"));
        convert(map, wrapper);
        List<BasDevpErrorLog> list = basDevpErrorLogService.selectList(wrapper);
        return R.ok(exportSupport(list, fields));
    }
    @RequestMapping(value = "/basDevpErrorLogQuery/auth")
    @ManagerAuth
    public R query(String condition) {
        EntityWrapper<BasDevpErrorLog> wrapper = new EntityWrapper<>();
        wrapper.like("dev_no", condition);
        Page<BasDevpErrorLog> page = basDevpErrorLogService.selectPage(new Page<>(0, 10), wrapper);
        List<Map<String, Object>> result = new ArrayList<>();
        for (BasDevpErrorLog basDevpErrorLog : page.getRecords()){
            Map<String, Object> map = new HashMap<>();
            map.put("id", basDevpErrorLog.getId());
            map.put("value", basDevpErrorLog.getId());
            result.add(map);
        }
        return R.ok(result);
    }
    @RequestMapping(value = "/basDevpErrorLog/check/column/auth")
    @ManagerAuth