eight
2024-11-11 ea1364fb67048883b2566d6320822a2d80560adf
jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/dal/mysql/checktype/CheckTypeMapper.java
@@ -6,9 +6,8 @@
import cn.lihu.jh.framework.mybatis.core.query.LambdaQueryWrapperX;
import cn.lihu.jh.framework.mybatis.core.mapper.BaseMapperX;
import cn.lihu.jh.module.ecg.dal.dataobject.checktype.CheckTypeDO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.*;
import cn.lihu.jh.module.ecg.controller.admin.checktype.vo.*;
import org.apache.ibatis.annotations.Select;
/**
 * 检查类型 Mapper
@@ -34,9 +33,10 @@
                .orderByDesc(CheckTypeDO::getId));
    }
    @Select("<script> " +
              "SELECT * FROM lihu.check_type;" +
            "</script>")
    @Select("SELECT * FROM lihu.check_type;")
    @Results({
            @Result(property = "affinityCheckTypes", column = "affinity_check_types", typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler.class)
    })
    List<CheckTypeDO> simpleCheckTypeList();
}