You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.0 KiB
41 lines
1.0 KiB
<?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.ccsens.carbasics.persist.dao.OrganizationPositionDao">
|
|
|
|
<select id="queryPosition" resultType="com.ccsens.carbasics.bean.vo.QuestionnaireVo$PositionInfo">
|
|
SELECT
|
|
id,
|
|
`name`
|
|
FROM
|
|
t_organization_position
|
|
WHERE
|
|
rec_status = 0
|
|
AND `code` IN (
|
|
'ZhiKong',
|
|
'KeZhuRen',
|
|
'FuZhuRen',
|
|
'YiSheng'
|
|
)
|
|
</select>
|
|
|
|
<select id="queryByCode" resultType="java.lang.Long">
|
|
SELECT
|
|
id
|
|
FROM
|
|
t_organization_position
|
|
WHERE
|
|
rec_status = 0
|
|
AND `code` = #{code}
|
|
</select>
|
|
|
|
<select id="queryByName" resultType="java.lang.Long">
|
|
SELECT
|
|
id
|
|
FROM
|
|
t_organization_position
|
|
WHERE
|
|
rec_status = 0
|
|
AND `name` = #{name}
|
|
</select>
|
|
|
|
</mapper>
|