You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
230 lines
7.4 KiB
230 lines
7.4 KiB
package com.controller;
|
|
|
|
import java.io.File;
|
|
import java.io.FileNotFoundException;
|
|
import java.io.IOException;
|
|
import java.text.SimpleDateFormat;
|
|
import java.util.ArrayList;
|
|
import java.util.Calendar;
|
|
import java.util.Date;
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
import org.json.JSONObject;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.web.bind.annotation.PathVariable;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
import com.annotation.IgnoreAuth;
|
|
import com.baidu.aip.face.AipFace;
|
|
import com.baidu.aip.face.MatchRequest;
|
|
import com.baidu.aip.util.Base64Util;
|
|
import com.baomidou.mybatisplus.mapper.EntityWrapper;
|
|
import com.entity.ConfigEntity;
|
|
import com.service.CommonService;
|
|
import com.service.ConfigService;
|
|
import com.utils.BaiduUtil;
|
|
import com.utils.FileUtil;
|
|
import com.utils.R;
|
|
import com.utils.CommonUtil;
|
|
/**
|
|
* 通用接口
|
|
*/
|
|
@RestController
|
|
public class CommonController{
|
|
@Autowired
|
|
private CommonService commonService;
|
|
|
|
private static AipFace client = null;
|
|
|
|
@Autowired
|
|
private ConfigService configService;
|
|
/**
|
|
* 获取table表中的column列表(联动接口)
|
|
* @param table
|
|
* @param column
|
|
* @return
|
|
*/
|
|
@RequestMapping("/option/{tableName}/{columnName}")
|
|
@IgnoreAuth
|
|
public R getOption(@PathVariable("tableName") String tableName, @PathVariable("columnName") String columnName,@RequestParam(required = false) String conditionColumn,@RequestParam(required = false) String conditionValue,String level,String parent) {
|
|
Map<String, Object> params = new HashMap<String, Object>();
|
|
params.put("table", tableName);
|
|
params.put("column", columnName);
|
|
if(StringUtils.isNotBlank(level)) {
|
|
params.put("level", level);
|
|
}
|
|
if(StringUtils.isNotBlank(parent)) {
|
|
params.put("parent", parent);
|
|
}
|
|
if(StringUtils.isNotBlank(conditionColumn)) {
|
|
params.put("conditionColumn", conditionColumn);
|
|
}
|
|
if(StringUtils.isNotBlank(conditionValue)) {
|
|
params.put("conditionValue", conditionValue);
|
|
}
|
|
List<String> data = commonService.getOption(params);
|
|
return R.ok().put("data", data);
|
|
}
|
|
|
|
/**
|
|
* 根据table中的column获取单条记录
|
|
* @param table
|
|
* @param column
|
|
* @return
|
|
*/
|
|
@RequestMapping("/follow/{tableName}/{columnName}")
|
|
@IgnoreAuth
|
|
public R getFollowByOption(@PathVariable("tableName") String tableName, @PathVariable("columnName") String columnName, @RequestParam String columnValue) {
|
|
Map<String, Object> params = new HashMap<String, Object>();
|
|
params.put("table", tableName);
|
|
params.put("column", columnName);
|
|
params.put("columnValue", columnValue);
|
|
Map<String, Object> result = commonService.getFollowByOption(params);
|
|
return R.ok().put("data", result);
|
|
}
|
|
|
|
/**
|
|
* 修改table表的sfsh状态
|
|
* @param table
|
|
* @param map
|
|
* @return
|
|
*/
|
|
@RequestMapping("/sh/{tableName}")
|
|
public R sh(@PathVariable("tableName") String tableName, @RequestBody Map<String, Object> map) {
|
|
map.put("table", tableName);
|
|
commonService.sh(map);
|
|
return R.ok();
|
|
}
|
|
|
|
/**
|
|
* 获取需要提醒的记录数
|
|
* @param tableName
|
|
* @param columnName
|
|
* @param type 1:数字 2:日期
|
|
* @param map
|
|
* @return
|
|
*/
|
|
@RequestMapping("/remind/{tableName}/{columnName}/{type}")
|
|
@IgnoreAuth
|
|
public R remindCount(@PathVariable("tableName") String tableName, @PathVariable("columnName") String columnName,
|
|
@PathVariable("type") String type,@RequestParam Map<String, Object> map) {
|
|
map.put("table", tableName);
|
|
map.put("column", columnName);
|
|
map.put("type", type);
|
|
|
|
if(type.equals("2")) {
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
|
Calendar c = Calendar.getInstance();
|
|
Date remindStartDate = null;
|
|
Date remindEndDate = null;
|
|
if(map.get("remindstart")!=null) {
|
|
Integer remindStart = Integer.parseInt(map.get("remindstart").toString());
|
|
c.setTime(new Date());
|
|
c.add(Calendar.DAY_OF_MONTH,remindStart);
|
|
remindStartDate = c.getTime();
|
|
map.put("remindstart", sdf.format(remindStartDate));
|
|
}
|
|
if(map.get("remindend")!=null) {
|
|
Integer remindEnd = Integer.parseInt(map.get("remindend").toString());
|
|
c.setTime(new Date());
|
|
c.add(Calendar.DAY_OF_MONTH,remindEnd);
|
|
remindEndDate = c.getTime();
|
|
map.put("remindend", sdf.format(remindEndDate));
|
|
}
|
|
}
|
|
|
|
int count = commonService.remindCount(map);
|
|
return R.ok().put("count", count);
|
|
}
|
|
|
|
/**
|
|
* 单列求和
|
|
*/
|
|
@RequestMapping("/cal/{tableName}/{columnName}")
|
|
@IgnoreAuth
|
|
public R cal(@PathVariable("tableName") String tableName, @PathVariable("columnName") String columnName) {
|
|
Map<String, Object> params = new HashMap<String, Object>();
|
|
params.put("table", tableName);
|
|
params.put("column", columnName);
|
|
Map<String, Object> result = commonService.selectCal(params);
|
|
return R.ok().put("data", result);
|
|
}
|
|
|
|
/**
|
|
* 分组统计
|
|
*/
|
|
@RequestMapping("/group/{tableName}/{columnName}")
|
|
@IgnoreAuth
|
|
public R group(@PathVariable("tableName") String tableName, @PathVariable("columnName") String columnName) {
|
|
Map<String, Object> params = new HashMap<String, Object>();
|
|
params.put("table", tableName);
|
|
params.put("column", columnName);
|
|
List<Map<String, Object>> result = commonService.selectGroup(params);
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
|
for(Map<String, Object> m : result) {
|
|
for(String k : m.keySet()) {
|
|
if(m.get(k) instanceof Date) {
|
|
m.put(k, sdf.format((Date)m.get(k)));
|
|
}
|
|
}
|
|
}
|
|
return R.ok().put("data", result);
|
|
}
|
|
|
|
/**
|
|
* (按值统计)
|
|
*/
|
|
@RequestMapping("/value/{tableName}/{xColumnName}/{yColumnName}")
|
|
@IgnoreAuth
|
|
public R value(@PathVariable("tableName") String tableName, @PathVariable("yColumnName") String yColumnName, @PathVariable("xColumnName") String xColumnName) {
|
|
Map<String, Object> params = new HashMap<String, Object>();
|
|
params.put("table", tableName);
|
|
params.put("xColumn", xColumnName);
|
|
params.put("yColumn", yColumnName);
|
|
List<Map<String, Object>> result = commonService.selectValue(params);
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
|
for(Map<String, Object> m : result) {
|
|
for(String k : m.keySet()) {
|
|
if(m.get(k) instanceof Date) {
|
|
m.put(k, sdf.format((Date)m.get(k)));
|
|
}
|
|
}
|
|
}
|
|
return R.ok().put("data", result);
|
|
}
|
|
|
|
/**
|
|
* (按值统计)时间统计类型
|
|
*/
|
|
@IgnoreAuth
|
|
@RequestMapping("/value/{tableName}/{xColumnName}/{yColumnName}/{timeStatType}")
|
|
public R valueDay(@PathVariable("tableName") String tableName, @PathVariable("yColumnName") String yColumnName, @PathVariable("xColumnName") String xColumnName, @PathVariable("timeStatType") String timeStatType) {
|
|
Map<String, Object> params = new HashMap<String, Object>();
|
|
params.put("table", tableName);
|
|
params.put("xColumn", xColumnName);
|
|
params.put("yColumn", yColumnName);
|
|
params.put("timeStatType", timeStatType);
|
|
List<Map<String, Object>> result = commonService.selectTimeStatValue(params);
|
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
|
for(Map<String, Object> m : result) {
|
|
for(String k : m.keySet()) {
|
|
if(m.get(k) instanceof Date) {
|
|
m.put(k, sdf.format((Date)m.get(k)));
|
|
}
|
|
}
|
|
}
|
|
return R.ok().put("data", result);
|
|
}
|
|
|
|
|
|
|
|
}
|