1.技术监督附件上传调整

This commit is contained in:
wr
2023-09-15 15:00:44 +08:00
parent 4e76669d4e
commit a169e7db19
8 changed files with 74 additions and 27 deletions

View File

@@ -18,5 +18,7 @@ import java.util.List;
*/
public interface SupvFileMapper extends BaseMapper<SupvFile> {
List<SupvFile> selectFile(@Param("param") SupvFileParam param);
List<SupvFile> selectPlanFile(@Param("param") SupvFileParam param);
List<SupvFile> selecProblemtFile(@Param("param") SupvFileParam param);
}

View File

@@ -2,7 +2,7 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.njcn.process.mapper.SupvFileMapper">
<select id="selectFile" resultType="com.njcn.process.pojo.po.SupvFile">
<select id="selectPlanFile" resultType="com.njcn.process.pojo.po.SupvFile">
select
sp.work_plan_name busiName,
sf.*
@@ -20,7 +20,30 @@
AND sf.type = #{param.type}
</if>
<if test="param!=null and param.attachmentType != null and param.attachmentType != ''">
AND sf.attachment_Type &lt;= #{param.attachmentType}
AND sf.attachment_Type = #{param.attachmentType}
</if>
</where>
</select>
<select id="selecProblemtFile" resultType="com.njcn.process.pojo.po.SupvFile">
select
sp.simple_Problem_Desc busiName,
sf.*
from
supv_file sf
INNER JOIN supv_problem sp on sp.problem_Id= sf.busi_Id
<where>
<if test="param!=null and param.ids != null and param.ids.size > 0">
AND busi_Id IN
<foreach collection='param.ids' item='item' index="index" open='(' separator=',' close=')'>
#{item}
</foreach>
</if>
<if test="param!=null and param.type != null ">
AND sf.type = #{param.type}
</if>
<if test="param!=null and param.attachmentType != null and param.attachmentType != ''">
AND sf.attachment_Type = #{param.attachmentType}
</if>
</where>
</select>