新增查询统计相关

master
anthonywj 1 year ago
parent 345c8a41a2
commit 5d505910d2

@ -0,0 +1,109 @@
package com.glxp.api.controller.stat;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.glxp.api.common.res.BaseResponse;
import com.glxp.api.common.util.ResultVOUtils;
import com.glxp.api.controller.BaseController;
import com.glxp.api.dao.basic.ProductInfoDao;
import com.glxp.api.entity.basic.ProductInfoEntity;
import com.glxp.api.entity.stat.*;
import com.glxp.api.req.basic.ProductInfoFilterRequest;
import com.glxp.api.req.replicate.FilterReplicateRequest;
import com.glxp.api.service.basic.ProductInfoService;
import com.glxp.api.service.stat.StatNmapCorpService;
import com.glxp.api.service.stat.StatNmapCountService;
import com.glxp.api.service.stat.StatProductCategoryService;
import com.glxp.api.util.DateUtil;
import org.springframework.web.bind.annotation.GetMapping;
import javax.annotation.Resource;
import java.util.Date;
import java.util.List;
/**
*
*/
public class BigNmapVisController extends BaseController {
@Resource
StatNmapCorpService statNmapCorpService;
@Resource
StatProductCategoryService statProductCategoryService;
@Resource
ProductInfoService productInfoService;
@Resource
ProductInfoDao productInfoDao;
@Resource
StatNmapCountService statNmapCountService;
/**
*
*/
@GetMapping("/cpt/bigVis/nmap/corp")
public BaseResponse getCityCompany() {
List<StatNmapCorpEntity> statNmapCorpEntities = statNmapCorpService.list(
new QueryWrapper<StatNmapCorpEntity>().orderByDesc("count").last("limit 10"));
return ResultVOUtils.success(statNmapCorpEntities);
}
/**
* .
*/
@GetMapping("/cpt/bigVis/nmap/category")
public BaseResponse getnmapCategory() {
List<StatProductCategoryEntity> statNmapCorpEntities = statProductCategoryService.list(
new QueryWrapper<StatProductCategoryEntity>().orderByDesc("nmapCount").last("limit 10"));
return ResultVOUtils.success(statNmapCorpEntities);
}
/**
*
*/
@GetMapping("/cpt/bigVis/nmap/category")
public BaseResponse getCptCategory() {
List<StatProductCategoryEntity> statNmapCorpEntities = statProductCategoryService.list(
new QueryWrapper<StatProductCategoryEntity>().orderByDesc("cptCount").last("limit 10"));
return ResultVOUtils.success(statNmapCorpEntities);
}
/**
*
*/
@GetMapping("/cpt/bigVis/nmap/total")
public BaseResponse getNmapCont() {
StatNmapCountEntity statNmapCountEntity = statNmapCountService.getOne(new QueryWrapper<StatNmapCountEntity>().last("limit 1"));
return ResultVOUtils.success(statNmapCountEntity);
}
/**
*
*/
@GetMapping("/cpt/bigVis/nmap/getLast")
public BaseResponse getLast(ProductInfoFilterRequest productInfoFilterRequest) {
List<ProductInfoEntity> productInfoEntities =
productInfoDao.selectList(new QueryWrapper<ProductInfoEntity>()
.between("updateTime", DateUtil.formatDateTime(new Date()), DateUtil.formatDateTime(DateUtil.getBeforeDay(new Date(), 1176)))
.orderByDesc("updateTime")
.last("limit 20")
);
// String startDate = DateUtil.formatDateTime(new Date());
// String endDate = DateUtil.formatDateTime(DateUtil.getBeforeDay(new Date(), 24));
// List<ProductInfoEntity> productInfoEntities = productInfoService.selectByUpdateTime(startDate, endDate);
return ResultVOUtils.success(productInfoEntities);
}
/**
*
*/
}

@ -114,7 +114,9 @@ public class BigVisController extends BaseController {
}
//任务列表
/**
*
*/
@ApiOperation(value = "查询任务列表", response = TraceTaskDlResponse.class)
@GetMapping("/cpt/bigVis/task/filter")
public BaseResponse filterTask(TraceTaskDetailRequest traceTaskDetailRequest) {
@ -124,4 +126,8 @@ public class BigVisController extends BaseController {
return ResultVOUtils.success(traceTaskDlResponses);
}
/**
*
*/
}

@ -1,5 +1,7 @@
package com.glxp.api.dao.basic;
import com.glxp.api.dao.BaseMapperPlus;
import com.glxp.api.entity.basic.CompanyProductRelevanceEntity;
import com.glxp.api.entity.basic.ProductInfoEntity;
import com.glxp.api.util.page.ListPageRequest;
import com.glxp.api.req.basic.ProductInfoFilterRequest;
@ -9,7 +11,7 @@ import org.apache.ibatis.annotations.Param;
import java.util.List;
@Mapper
public interface ProductInfoDao {
public interface ProductInfoDao extends BaseMapperPlus<ProductInfoDao, ProductInfoEntity, ProductInfoEntity> {
List<ProductInfoEntity> filterProductInfo(ProductInfoFilterRequest productInfoFilterRequest);

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

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

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

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

@ -0,0 +1,47 @@
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 lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
@TableName(value = "stat_cert_warn")
public class StatCertWarnEntity implements Serializable {
@TableId(value = "id", type = IdType.INPUT)
private Integer id;
/**
*
*/
@TableField(value = "certTotal")
private Integer certTotal;
/**
*
*/
@TableField(value = "errCount")
private Integer errCount;
/**
*
*/
@TableField(value = "warnCount")
private Integer warnCount;
/**
*
*/
@TableField(value = "normalCount")
private Integer normalCount;
private static final long serialVersionUID = 1L;
}

@ -4,8 +4,10 @@ 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;
@ -29,6 +31,13 @@ public class StatCityCorpEntity implements Serializable {
@TableField(value = "`count`")
private Integer count;
@TableField(value = "cptCount")
private Integer cptCount;
@TableField(value = "rate")
private Integer rate;
@TableField(value = "updateTime")
private Date updateTime;

@ -4,8 +4,10 @@ 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;
@ -38,6 +40,20 @@ public class StatCorpProductEntity implements Serializable {
@TableField(value = "productCount")
private Integer productCount;
/**
*
*/
@TableField(value = "traceCount")
private Integer traceCount;
/**
*
*/
@TableField(value = "traceFailCount")
private Integer traceFailCount;
/**
*
*/

@ -0,0 +1,45 @@
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_nmap_corp")
public class StatNmapCorpEntity implements Serializable {
@TableId(value = "id", type = IdType.INPUT)
private Integer id;
/**
*
*/
@TableField(value = "`name`")
private String name;
/**
*
*/
@TableField(value = "creditNum")
private String creditNum;
@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,65 @@
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 lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
*
*/
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
@TableName(value = "stat_nmap_count")
public class StatNmapCountEntity implements Serializable {
@TableId(value = "id", type = IdType.INPUT)
private Integer id;
/**
*
*/
@TableField(value = "productCount")
private Integer productCount;
/**
*
*/
@TableField(value = "corpCount")
private Integer corpCount;
/**
*
*/
@TableField(value = "fjProductCount")
private Integer fjProductCount;
/**
*
*/
@TableField(value = "fjCorpCount")
private Integer fjCorpCount;
/**
*
*/
@TableField(value = "qxCount")
private Integer qxCount;
/**
*
*/
@TableField(value = "sjCount")
private Integer sjCount;
private static final long serialVersionUID = 1L;
}

@ -0,0 +1,72 @@
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_product_category")
public class StatProductCategoryEntity implements Serializable {
@TableId(value = "id", type = IdType.INPUT)
private Integer id;
/**
*
*/
@TableField(value = "categoryCode")
private String categoryCode;
/**
*
*/
@TableField(value = "categoryName")
private String categoryName;
/**
*
*/
@TableField(value = "nmapCount")
private Integer nmapCount;
/**
*
*/
@TableField(value = "cptCount")
private Integer cptCount;
/**
* 1:23
*/
@TableField(value = "`type`")
private Byte type;
/**
* 1,2,3
*/
@TableField(value = "`level`")
private Byte level;
/**
*
*/
@TableField(value = "qxlb")
private String qxlb;
@TableField(value = "updateTime")
private Date updateTime;
@TableField(value = "remark")
private String remark;
private static final long serialVersionUID = 1L;
}

@ -47,6 +47,11 @@ public class StatTraceCountEntity implements Serializable {
@TableField(value = "successCount")
private Integer successCount;
/**
*
*/
@TableField(value = "nmapCount")
private Integer nmapCount;
/**
*

@ -0,0 +1,16 @@
package com.glxp.api.res.stat;
import lombok.Data;
@Data
public class NmapTotalResponse {
/**
*
*/
private Integer qxCount;
/**
*
*/
private Integer sjCount;
}

@ -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.StatCertWarnMapper;
import com.glxp.api.entity.stat.StatCertWarnEntity;
@Service
public class StatCertWarnService extends ServiceImpl<StatCertWarnMapper, StatCertWarnEntity> {
}

@ -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.StatNmapCorpEntity;
import com.glxp.api.dao.stat.StatNmapCorpMapper;
@Service
public class StatNmapCorpService extends ServiceImpl<StatNmapCorpMapper, StatNmapCorpEntity> {
}

@ -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.StatNmapCountMapper;
import com.glxp.api.entity.stat.StatNmapCountEntity;
@Service
public class StatNmapCountService extends ServiceImpl<StatNmapCountMapper, StatNmapCountEntity> {
}

@ -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.StatProductCategoryMapper;
import com.glxp.api.entity.stat.StatProductCategoryEntity;
@Service
public class StatProductCategoryService extends ServiceImpl<StatProductCategoryMapper, StatProductCategoryEntity> {
}

@ -0,0 +1,17 @@
<?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.StatCertWarnMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.stat.StatCertWarnEntity">
<!--@mbg.generated-->
<!--@Table stat_cert_warn-->
<id column="id" jdbcType="INTEGER" property="id" />
<result column="certTotal" jdbcType="INTEGER" property="certTotal" />
<result column="errCount" jdbcType="INTEGER" property="errCount" />
<result column="warnCount" jdbcType="INTEGER" property="warnCount" />
<result column="normalCount" jdbcType="INTEGER" property="normalCount" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, certTotal, errCount, warnCount, normalCount
</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.StatNmapCorpMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.stat.StatNmapCorpEntity">
<!--@mbg.generated-->
<!--@Table stat_nmap_corp-->
<id column="id" jdbcType="INTEGER" property="id" />
<result column="name" jdbcType="VARCHAR" property="name" />
<result column="creditNum" jdbcType="VARCHAR" property="creditNum" />
<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, `name`, creditNum, `count`, updateTime, remark
</sql>
</mapper>

@ -0,0 +1,17 @@
<?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.StatNmapCountMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.stat.StatNmapCountEntity">
<!--@mbg.generated-->
<!--@Table stat_nmap_count-->
<id column="id" jdbcType="INTEGER" property="id" />
<result column="productCount" jdbcType="INTEGER" property="productCount" />
<result column="corpCount" jdbcType="INTEGER" property="corpCount" />
<result column="fjProductCount" jdbcType="INTEGER" property="fjProductCount" />
<result column="fjCorpCount" jdbcType="INTEGER" property="fjCorpCount" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, productCount, corpCount, fjProductCount, fjCorpCount
</sql>
</mapper>

@ -0,0 +1,23 @@
<?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.StatProductCategoryMapper">
<resultMap id="BaseResultMap" type="com.glxp.api.entity.stat.StatProductCategoryEntity">
<!--@mbg.generated-->
<!--@Table stat_product_category-->
<id column="id" jdbcType="INTEGER" property="id" />
<result column="categoryCode" jdbcType="VARCHAR" property="categoryCode" />
<result column="categoryName" jdbcType="VARCHAR" property="categoryName" />
<result column="nmapCount" jdbcType="INTEGER" property="nmapCount" />
<result column="cptCount" jdbcType="INTEGER" property="cptCount" />
<result column="type" jdbcType="TINYINT" property="type" />
<result column="level" jdbcType="TINYINT" property="level" />
<result column="qxlb" jdbcType="VARCHAR" property="qxlb" />
<result column="updateTime" jdbcType="TIMESTAMP" property="updateTime" />
<result column="remark" jdbcType="VARCHAR" property="remark" />
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, categoryCode, categoryName, nmapCount, cptCount, `type`, `level`, qxlb, updateTime,
remark
</sql>
</mapper>
Loading…
Cancel
Save