liusheng
2025-03-13 ae2265b47fce6358e427b467091a7cf91df93e4e
代码提交
已修改2个文件
6 ■■■■ 文件已修改
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/PatMedOperationController.java 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
smartor/src/main/resources/mapper/smartor/ServiceTaskMapper.xml 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
ruoyi-admin/src/main/java/com/ruoyi/web/controller/smartor/PatMedOperationController.java
@@ -42,8 +42,8 @@
     */
    @ApiOperation("查询患者手术记录列表")
    //@PreAuthorize("@ss.hasPermi('smartor:operation:list')")
    @GetMapping("/list")
    public TableDataInfo list(PatMedOperation patMedOperation)
    @PostMapping("/list")
    public TableDataInfo list(@RequestBody PatMedOperation patMedOperation)
    {
        startPage();
        List<PatMedOperation> list = patMedOperationService.selectPatMedOperationList(patMedOperation);
smartor/src/main/resources/mapper/smartor/ServiceTaskMapper.xml
@@ -332,7 +332,7 @@
    <select id="selectServiceTaskByTaskid" parameterType="Long" resultMap="ServiceTaskResult">
        <include refid="selectServiceTaskVo"/>
        where taskid = #{taskid}
        where taskid = #{taskid} and del_flag=0
    </select>
    <insert id="insertServiceTask" parameterType="com.smartor.domain.ServiceTask" useGeneratedKeys="true"