协调平台大屏展示

master
anthonywj 1 year ago
parent 2ee6f92815
commit 345c8a41a2

@ -0,0 +1,127 @@
package com.glxp.api.controller.stat;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.github.pagehelper.PageInfo;
import com.glxp.api.annotation.AuthRuleAnnotation;
import com.glxp.api.common.res.BaseResponse;
import com.glxp.api.common.util.ResultVOUtils;
import com.glxp.api.controller.BaseController;
import com.glxp.api.entity.stat.*;
import com.glxp.api.req.replicate.FilterReplicateRequest;
import com.glxp.api.req.trace.TraceTaskDetailRequest;
import com.glxp.api.res.PageSimpleResponse;
import com.glxp.api.res.trace.TraceTaskDlResponse;
import com.glxp.api.service.stat.*;
import com.glxp.api.service.trace.TraceTaskService;
import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource;
import java.util.List;
/**
*
*/
@RestController
public class BigVisController extends BaseController {
@Resource
StatCorpCountService statCorpCountService;
@Resource
StatCorpProductService statCorpProductService;
@Resource
StatCorpTypeService statCorpTypeService;
@Resource
StatTraceCountService statTraceCountService;
@Resource
SysMsgTodoService sysMsgTodoService;
@Resource
TraceTaskService traceTaskService;
@Resource
StatCityCorpService statCityCorpService;
/**
*
*/
@GetMapping("/cpt/bigVis/city/company")
public BaseResponse getCityCompany(FilterReplicateRequest filterReplicateRequest) {
List<StatCityCorpEntity> statCityCorpEntities = statCityCorpService.list(
new QueryWrapper<StatCityCorpEntity>());
return ResultVOUtils.success(statCityCorpEntities);
}
/**
* UDI
*/
@GetMapping("/cpt/bigVis/company/product/list")
public BaseResponse companyProduct(FilterReplicateRequest filterReplicateRequest) {
List<StatCorpProductEntity> statCorpProductEntities = statCorpProductService.list(
new QueryWrapper<StatCorpProductEntity>()
.orderByDesc("productCount").last("limit 10"));
return ResultVOUtils.success(statCorpProductEntities);
}
/**
*
*/
@GetMapping("/cpt/bigVis/company/type/list")
public BaseResponse companyTypeList(FilterReplicateRequest filterReplicateRequest) {
StatCorpTypeEntity statCorpTypeEntity = statCorpTypeService.getOne(new QueryWrapper<StatCorpTypeEntity>().last("limit 1"));
return ResultVOUtils.success(statCorpTypeEntity);
}
/**
* 线
*/
@GetMapping("/cpt/bigVis/company/online/list")
public BaseResponse companyOnLineList(FilterReplicateRequest filterReplicateRequest) {
StatCorpCountEntity statCorpCountEntity = statCorpCountService.getOne(new QueryWrapper<StatCorpCountEntity>().last("limit 1"));
return ResultVOUtils.success(statCorpCountEntity);
}
/**
*
*/
@GetMapping("/cpt/bigVis/company/trace/list")
public BaseResponse companyTraceList(FilterReplicateRequest filterReplicateRequest) {
List<StatTraceCountEntity> statCorpProductEntities = statTraceCountService.list(
new QueryWrapper<StatTraceCountEntity>()
.orderByDesc("searchDate").last("limit 10"));
return ResultVOUtils.success(statCorpProductEntities);
}
/**
*
*/
@GetMapping("/cpt/bigVis/company/todo/msg")
public BaseResponse systemMsgTodo(FilterReplicateRequest filterReplicateRequest) {
List<SysMsgTodoEntity> sysMsgTodoEntities = sysMsgTodoService.list(
new QueryWrapper<SysMsgTodoEntity>()
.orderByDesc("updateTime").last("limit 10"));
return ResultVOUtils.success(sysMsgTodoEntities);
}
//任务列表
@ApiOperation(value = "查询任务列表", response = TraceTaskDlResponse.class)
@GetMapping("/cpt/bigVis/task/filter")
public BaseResponse filterTask(TraceTaskDetailRequest traceTaskDetailRequest) {
traceTaskDetailRequest.setPage(1);
traceTaskDetailRequest.setLimit(10);
List<TraceTaskDlResponse> traceTaskDlResponses = traceTaskService.queryTraceTaskList(traceTaskDetailRequest);
return ResultVOUtils.success(traceTaskDlResponses);
}
}

@ -0,0 +1,9 @@
package com.glxp.api.dao.stat;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.api.entity.stat.StatCityCorpEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface StatCityCorpMapper extends BaseMapper<StatCityCorpEntity> {
}

@ -0,0 +1,9 @@
package com.glxp.api.dao.stat;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.api.entity.stat.StatCorpCountEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface StatCorpCountMapper extends BaseMapper<StatCorpCountEntity> {
}

@ -0,0 +1,9 @@
package com.glxp.api.dao.stat;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.api.entity.stat.StatCorpProductEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface StatCorpProductMapper extends BaseMapper<StatCorpProductEntity> {
}

@ -0,0 +1,9 @@
package com.glxp.api.dao.stat;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.api.entity.stat.StatCorpTypeEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface StatCorpTypeMapper extends BaseMapper<StatCorpTypeEntity> {
}

@ -0,0 +1,9 @@
package com.glxp.api.dao.stat;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.api.entity.stat.StatTraceCountEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface StatTraceCountMapper extends BaseMapper<StatTraceCountEntity> {
}

@ -0,0 +1,9 @@
package com.glxp.api.dao.stat;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.api.entity.stat.SysMsgTodoEntity;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface SysMsgTodoMapper extends BaseMapper<SysMsgTodoEntity> {
}

@ -0,0 +1,39 @@
package com.glxp.api.entity.stat;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
@TableName(value = "stat_city_corp")
public class StatCityCorpEntity implements Serializable {
@TableId(value = "id", type = IdType.INPUT)
private Integer id;
@TableField(value = "cityCode")
private String cityCode;
@TableField(value = "cityName")
private String cityName;
@TableField(value = "`count`")
private Integer count;
@TableField(value = "updateTime")
private Date updateTime;
@TableField(value = "remark")
private String remark;
private static final long serialVersionUID = 1L;
}

@ -0,0 +1,42 @@
package com.glxp.api.entity.stat;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
@TableName(value = "stat_corp_count")
public class StatCorpCountEntity implements Serializable {
@TableId(value = "id", type = IdType.INPUT)
private Integer id;
@TableField(value = "totalCount")
private Integer totalCount;
@TableField(value = "onlineCount")
private Integer onlineCount;
@TableField(value = "offlineCount")
private Integer offlineCount;
@TableField(value = "errCount")
private Integer errCount;
@TableField(value = "updateTime")
private Date updateTime;
@TableField(value = "remark")
private String remark;
private static final long serialVersionUID = 1L;
}

@ -0,0 +1,54 @@
package com.glxp.api.entity.stat;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
@TableName(value = "stat_corp_product")
public class StatCorpProductEntity implements Serializable {
@TableId(value = "id", type = IdType.INPUT)
private Integer id;
/**
*
*/
@TableField(value = "corpName")
private String corpName;
/**
* ID
*/
@TableField(value = "corpId")
private Long corpId;
/**
*
*/
@TableField(value = "productCount")
private Integer productCount;
/**
*
*/
@TableField(value = "updateTime")
private Date updateTime;
/**
*
*/
@TableField(value = "remark")
private String remark;
private static final long serialVersionUID = 1L;
}

@ -0,0 +1,55 @@
package com.glxp.api.entity.stat;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
@TableName(value = "stat_corp_type")
public class StatCorpTypeEntity implements Serializable {
@TableId(value = "id", type = IdType.INPUT)
private Integer id;
/**
*
*/
@TableField(value = "manuCount")
private Integer manuCount;
/**
*
*/
@TableField(value = "hospCount")
private Integer hospCount;
/**
*
*/
@TableField(value = "supCount")
private Integer supCount;
/**
*
*/
@TableField(value = "updateTime")
private Date updateTime;
/**
*
*/
@TableField(value = "remark")
private String remark;
private static final long serialVersionUID = 1L;
}

@ -0,0 +1,64 @@
package com.glxp.api.entity.stat;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
@TableName(value = "stat_trace_count")
public class StatTraceCountEntity implements Serializable {
@TableId(value = "id", type = IdType.INPUT)
private Integer id;
/**
*
*/
@TableField(value = "searchDate")
private Date searchDate;
/**
*
*/
@TableField(value = "searchCount")
private Integer searchCount;
/**
*
*/
@TableField(value = "failCount")
private Integer failCount;
/**
*
*/
@TableField(value = "successCount")
private Integer successCount;
/**
*
*/
@TableField(value = "updateTime")
private Date updateTime;
/**
*
*/
@TableField(value = "remark")
private String remark;
private static final long serialVersionUID = 1L;
}

@ -0,0 +1,96 @@
package com.glxp.api.entity.stat;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
@TableName(value = "sys_msg_todo")
public class SysMsgTodoEntity implements Serializable {
@TableId(value = "id", type = IdType.INPUT)
private Integer id;
/**
*
*/
@TableField(value = "code")
private String code;
/**
*
*/
@TableField(value = "msgType")
private Byte msgType;
/**
*
*/
@TableField(value = "msgContent")
private String msgContent;
/**
*
*/
@TableField(value = "dealStatus")
private Byte dealStatus;
/**
* 12:3
*/
@TableField(value = "pushStatus")
private Byte pushStatus;
/**
*
*/
@TableField(value = "toUrl")
private String toUrl;
/**
*
*/
@TableField(value = "createTime")
private Date createTime;
/**
*
*/
@TableField(value = "updateUser")
private String updateUser;
/**
*
*/
@TableField(value = "updateTime")
private Date updateTime;
/**
* ID
*/
@TableField(value = "companyId")
private Long companyId;
/**
*
*/
@TableField(value = "remark")
private String remark;
@TableField(value = "companyName")
private String companyName;
private static final long serialVersionUID = 1L;
}

@ -0,0 +1,10 @@
package com.glxp.api.service.stat;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.api.dao.stat.StatCityCorpMapper;
import com.glxp.api.entity.stat.StatCityCorpEntity;
@Service
public class StatCityCorpService extends ServiceImpl<StatCityCorpMapper, StatCityCorpEntity> {
}

@ -0,0 +1,10 @@
package com.glxp.api.service.stat;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.api.dao.stat.StatCorpCountMapper;
import com.glxp.api.entity.stat.StatCorpCountEntity;
@Service
public class StatCorpCountService extends ServiceImpl<StatCorpCountMapper, StatCorpCountEntity> {
}

@ -0,0 +1,10 @@
package com.glxp.api.service.stat;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.api.entity.stat.StatCorpProductEntity;
import com.glxp.api.dao.stat.StatCorpProductMapper;
@Service
public class StatCorpProductService extends ServiceImpl<StatCorpProductMapper, StatCorpProductEntity> {
}

@ -0,0 +1,10 @@
package com.glxp.api.service.stat;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.api.entity.stat.StatCorpTypeEntity;
import com.glxp.api.dao.stat.StatCorpTypeMapper;
@Service
public class StatCorpTypeService extends ServiceImpl<StatCorpTypeMapper, StatCorpTypeEntity> {
}

@ -0,0 +1,10 @@
package com.glxp.api.service.stat;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.api.dao.stat.StatTraceCountMapper;
import com.glxp.api.entity.stat.StatTraceCountEntity;
@Service
public class StatTraceCountService extends ServiceImpl<StatTraceCountMapper, StatTraceCountEntity> {
}

@ -0,0 +1,10 @@
package com.glxp.api.service.stat;
import org.springframework.stereotype.Service;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.api.dao.stat.SysMsgTodoMapper;
import com.glxp.api.entity.stat.SysMsgTodoEntity;
@Service
public class SysMsgTodoService extends ServiceImpl<SysMsgTodoMapper, SysMsgTodoEntity> {
}

@ -78,6 +78,10 @@ logging:
level:
com.glxp.api.dao: debug
minio_path: /udi
minio_url: http://139.9.219.60:9000
file_path: D:/udi/inUdiwms/udiwmsfile/
UDI_KEY: 6b137c66-6286-46c6-8efa-c2f5dd9237df
UDI_SERVER_URL: https://www.udims.com/UDI_DL_Server_test

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.glxp.api.dao.stat.StatCityCorpMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.stat.StatCityCorpEntity">
<!--@mbg.generated-->
<!--@Table stat_city_corp-->
<id column="id" jdbcType="INTEGER" property="id" />
<result column="cityCode" jdbcType="VARCHAR" property="cityCode" />
<result column="cityName" jdbcType="VARCHAR" property="cityName" />
<result column="count" jdbcType="INTEGER" property="count" />
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
<result column="remark" jdbcType="VARCHAR" property="remark" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, cityCode, cityName, `count`, updateTime, remark
</sql>
</mapper>

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.glxp.api.dao.stat.StatCorpCountMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.stat.StatCorpCountEntity">
<!--@mbg.generated-->
<!--@Table stat_corp_count-->
<id column="id" jdbcType="INTEGER" property="id" />
<result column="totalCount" jdbcType="INTEGER" property="totalCount" />
<result column="onlineCount" jdbcType="INTEGER" property="onlineCount" />
<result column="offlineCount" jdbcType="INTEGER" property="offlineCount" />
<result column="errCount" jdbcType="INTEGER" property="errCount" />
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
<result column="remark" jdbcType="VARCHAR" property="remark" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, totalCount, onlineCount, offlineCount, errCount, updateTime, remark
</sql>
</mapper>

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.glxp.api.dao.stat.StatCorpProductMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.stat.StatCorpProductEntity">
<!--@mbg.generated-->
<!--@Table stat_corp_product-->
<id column="id" jdbcType="INTEGER" property="id" />
<result column="corpName" jdbcType="VARCHAR" property="corpName" />
<result column="corpId" jdbcType="BIGINT" property="corpId" />
<result column="productCount" jdbcType="INTEGER" property="productCount" />
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
<result column="remark" jdbcType="VARCHAR" property="remark" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, corpName, corpId, productCount, updateTime, remark
</sql>
</mapper>

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.glxp.api.dao.stat.StatCorpTypeMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.stat.StatCorpTypeEntity">
<!--@mbg.generated-->
<!--@Table stat_corp_type-->
<id column="id" jdbcType="INTEGER" property="id" />
<result column="manuCount" jdbcType="INTEGER" property="manuCount" />
<result column="hospCount" jdbcType="INTEGER" property="hospCount" />
<result column="supCount" jdbcType="INTEGER" property="supCount" />
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
<result column="remark" jdbcType="VARCHAR" property="remark" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, manuCount, hospCount, supCount, updateTime, remark
</sql>
</mapper>

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.glxp.api.dao.stat.StatTraceCountMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.stat.StatTraceCountEntity">
<!--@mbg.generated-->
<!--@Table stat_trace_count-->
<id column="id" jdbcType="INTEGER" property="id"/>
<result column="searchDate" jdbcType="TIMESTAMP" property="searchDate"/>
<result column="searchCount" jdbcType="INTEGER" property="searchCount"/>
<result column="successCount" jdbcType="INTEGER" property="searchCount"/>
<result column="failCount" jdbcType="INTEGER" property="searchCount"/>
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime"/>
<result column="remark" jdbcType="VARCHAR" property="remark"/>
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, searchDate, searchCount, updateTime, remark,successCount,failCount
</sql>
</mapper>

@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.glxp.api.dao.stat.SysMsgTodoMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.stat.SysMsgTodoEntity">
<!--@mbg.generated-->
<!--@Table sys_msg_todo-->
<id column="id" jdbcType="INTEGER" property="id"/>
<result column="code" jdbcType="VARCHAR" property="code"/>
<result column="msgType" jdbcType="TINYINT" property="msgType"/>
<result column="msgContent" jdbcType="VARCHAR" property="msgContent"/>
<result column="dealStatus" jdbcType="TINYINT" property="dealStatus"/>
<result column="pushStatus" jdbcType="TINYINT" property="pushStatus"/>
<result column="toUrl" jdbcType="VARCHAR" property="toUrl"/>
<result column="createTime" jdbcType="TIMESTAMP" property="createTime"/>
<result column="updateUser" jdbcType="VARCHAR" property="updateUser"/>
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime"/>
<result column="companyId" jdbcType="BIGINT" property="companyId"/>
<result column="companyName" jdbcType="VARCHAR" property="companyName"/>
<result column="remark" jdbcType="VARCHAR" property="remark"/>
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, code, msgType, msgContent, dealStatus, pushStatus, toUrl, createTime, updateUser,
updateTime, companyId, companyName,remark
</sql>
</mapper>
Loading…
Cancel
Save