新增查询统计相关
							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); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     /** | ||||||
|  |      * 获取最近追溯查询统计数 | ||||||
|  |      */ | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | } | ||||||
| @ -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; | ||||||
|  | } | ||||||
| @ -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,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…
					
					
				
		Reference in New Issue