“djh”
2025-11-20 a14b9718755aeeb26b3035065a5e36c9dd1e1555
修改
已修改3个文件
10 ■■■■■ 文件已修改
multi-system/src/main/java/com/gkhy/exam/system/domain/StandardizedTemplate.java 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
multi-system/src/main/java/com/gkhy/exam/system/service/impl/StandardizedTemplateServiceImpl.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
multi-system/src/main/resources/mapper/system/StandardizedTemplateMapper.xml 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
multi-system/src/main/java/com/gkhy/exam/system/domain/StandardizedTemplate.java
@@ -54,6 +54,9 @@
    @TableField(exist = false)
    private String deptName;
    @TableField("stage")
    private String stage;
    @ApiModelProperty(value = "行业类型")
    @TableField("industry_type_id")
    private Integer industryTypeId;
multi-system/src/main/java/com/gkhy/exam/system/service/impl/StandardizedTemplateServiceImpl.java
@@ -58,7 +58,7 @@
        }
        PageUtils.startPage();
        List<StandardizedTemplate> standardizedTemplates =new ArrayList<>();
        if (templateType==2 || templateType==10){
        if (templateType==2 || templateType==10 || templateType == 3){
            standardizedTemplates = standardizedTemplateMapper.selectStandardizedTemplateListV2(companyId, templateType, null);
        }else {
            standardizedTemplates = standardizedTemplateMapper.selectStandardizedTemplateList(companyId, templateType);
multi-system/src/main/resources/mapper/system/StandardizedTemplateMapper.xml
@@ -31,6 +31,9 @@
            <if test="deptId !=null">
                dept_id = #{deptId},
            </if>
            <if test="stage != null and stage != ''">
                stage = #{stage},
            </if>
            <if test="delFlag != null and delFlag != ''" >
                del_flag = #{delFlag},
            </if>
@@ -62,6 +65,7 @@
            st. `classify`,
            st. `dept_id`,
            sd.`dept_name`,
            st.`stage`,
            st. `del_flag`,
            st. `create_by`,
            st. `create_time`,
@@ -93,6 +97,7 @@
        st. `classify`,
        st. `dept_id`,
        sd.`dept_name`,
        st. `stage`,
        st. `del_flag`,
        st. `create_by`,
        st. `create_time`,