| | |
| | | */ |
| | | @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) { |
| | |
| | | <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> |