陈昶聿
4 天以前 d676aa22e6ae888ff7ac7bf62d2bf83c6913ea5f
【丽水】患者满意度导出增加完成时间条件
已修改2个文件
7 ■■■■■ 文件已修改
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/PatSatisfactionController.java 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
smartor/src/main/resources/mapper/smartor/PatSatisfactionMapper.xml 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/PatSatisfactionController.java
@@ -71,6 +71,7 @@
     */
    @ApiOperation("导出患者满意度列表")
    //@PreAuthorize("@ss.hasPermi('smartor:satisfaction:export')")
    @AddOrgId(field = "orgid", paramIndex = 0, campusField = "campusid")
    @Log(title = "患者满意度", businessType = BusinessType.EXPORT)
    @PostMapping("/export")
    public void export(HttpServletResponse response, PatSatisfaction patSatisfaction) {
smartor/src/main/resources/mapper/smartor/PatSatisfactionMapper.xml
@@ -108,6 +108,12 @@
            <if test="orgid != null  and orgid != ''">
                and orgid = #{orgid}
            </if>
            <if test="createTime != null">
                and create_time = #{createTime},
            </if>
            <if test="updateTime != null">
                and update_time = #{updateTime},
            </if>
            <if test="startTime != null">
                AND date_format(update_time,'%y%m%d') >= date_format(#{startTime},'%y%m%d')
            </if>