Files
dc_project/src/main/resources/mapper/StandardCategoryMapper.xml
2025-12-01 18:05:59 +08:00

17 lines
651 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.dc.dc_project.mapper.StandardCategoryMapper">
<sql id="Base_Column_List">
id,parent_id,name,code,sort_order,remark,
created_at,updated_at,is_deleted
</sql>
<select id="selectListByOrgId" resultType="com.dc.dc_project.model.pojo.StandardCategory">
select ssc.*
from sys_standard_category ssc
where id in (select standard_category_id from sys_org_laboratory_standard where org_id=#{orgId})
</select>
</mapper>