Merge branch 'master' into docker_package
This commit is contained in:
commit
bd2219a6e4
|
@ -8,6 +8,7 @@ import com.fasterxml.jackson.databind.ObjectMapper;
|
||||||
import io.renren.common.annotation.LogOperation;
|
import io.renren.common.annotation.LogOperation;
|
||||||
import io.renren.common.constant.Constant;
|
import io.renren.common.constant.Constant;
|
||||||
import io.renren.common.utils.Result;
|
import io.renren.common.utils.Result;
|
||||||
|
import io.renren.modules.date_snapshot.service.SysDateSnapshotService;
|
||||||
import io.renren.modules.processForm.service.TAbilityApplicationService;
|
import io.renren.modules.processForm.service.TAbilityApplicationService;
|
||||||
import io.renren.modules.resource.dao.ResourceDao;
|
import io.renren.modules.resource.dao.ResourceDao;
|
||||||
import io.renren.modules.resource.excel.census.SelectApplyDeptDetailTypeCountListExcel;
|
import io.renren.modules.resource.excel.census.SelectApplyDeptDetailTypeCountListExcel;
|
||||||
|
@ -70,6 +71,9 @@ public class CensusController {
|
||||||
@Autowired
|
@Autowired
|
||||||
private JdbcTemplate jdbcTemplate;
|
private JdbcTemplate jdbcTemplate;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private SysDateSnapshotService sysDateSnapshotService;
|
||||||
|
|
||||||
@Value("${census.type}")
|
@Value("${census.type}")
|
||||||
private String[] censusTypes; // 需要进行统计的资源类型
|
private String[] censusTypes; // 需要进行统计的资源类型
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
package io.renren.modules.date_snapshot.dao;
|
package io.renren.modules.date_snapshot.dao;
|
||||||
|
|
||||||
import io.renren.common.dao.BaseDao;
|
import io.renren.common.dao.BaseDao;
|
||||||
|
import io.renren.modules.date_snapshot.dto.SysDateSnapshotDTO;
|
||||||
import io.renren.modules.date_snapshot.entity.SysDateSnapshotEntity;
|
import io.renren.modules.date_snapshot.entity.SysDateSnapshotEntity;
|
||||||
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 运行数据快照(资源数量、申请数量)
|
* 运行数据快照(资源数量、申请数量)
|
||||||
|
@ -13,4 +15,6 @@ import org.apache.ibatis.annotations.Mapper;
|
||||||
@Mapper
|
@Mapper
|
||||||
public interface SysDateSnapshotDao extends BaseDao<SysDateSnapshotEntity> {
|
public interface SysDateSnapshotDao extends BaseDao<SysDateSnapshotEntity> {
|
||||||
|
|
||||||
|
SysDateSnapshotDTO selectForFlag(@Param("type") Integer type);
|
||||||
|
|
||||||
}
|
}
|
|
@ -109,6 +109,6 @@ public class SysDateSnapshotServiceImpl extends CrudServiceImpl<SysDateSnapshotD
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public SysDateSnapshotDTO selectForFlag(Integer type) {
|
public SysDateSnapshotDTO selectForFlag(Integer type) {
|
||||||
return null;
|
return baseDao.selectForFlag(type);
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -21,4 +21,16 @@
|
||||||
typeHandler="com.baomidou.mybatisplus.extension.handlers.FastjsonTypeHandler"/>
|
typeHandler="com.baomidou.mybatisplus.extension.handlers.FastjsonTypeHandler"/>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
|
<select id="selectForFlag" resultType="io.renren.modules.date_snapshot.dto.SysDateSnapshotDTO">
|
||||||
|
SELECT
|
||||||
|
*
|
||||||
|
FROM
|
||||||
|
sys_date_snapshot
|
||||||
|
WHERE
|
||||||
|
type = ${type}
|
||||||
|
ORDER BY
|
||||||
|
create_date DESC
|
||||||
|
LIMIT 1;
|
||||||
|
</select>
|
||||||
|
|
||||||
</mapper>
|
</mapper>
|
|
@ -73,6 +73,18 @@
|
||||||
<if test="updateDate != null and updateDate != ''">
|
<if test="updateDate != null and updateDate != ''">
|
||||||
and updateDate #{updateDate}
|
and updateDate #{updateDate}
|
||||||
</if>
|
</if>
|
||||||
|
<if test="senses != null and senses.length > 0 ">
|
||||||
|
and application_area in
|
||||||
|
<foreach collection="senses" item="item" open="(" separator="," close=")">
|
||||||
|
#{item}
|
||||||
|
</foreach>
|
||||||
|
</if>
|
||||||
|
<if test="areas != null and areas.length > 0 ">
|
||||||
|
and area in
|
||||||
|
<foreach collection="areas" item="item" open="(" separator="," close=")">
|
||||||
|
#{item}
|
||||||
|
</foreach>
|
||||||
|
</if>
|
||||||
group by tf.id
|
group by tf.id
|
||||||
ORDER BY ${orderField} ${orderType}
|
ORDER BY ${orderField} ${orderType}
|
||||||
</select>
|
</select>
|
||||||
|
|
Loading…
Reference in New Issue