parent
4b590cfd64
commit
700a1db096
4 changed files with 23 additions and 2 deletions
@ -1,6 +1,14 @@ |
||||
<?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.msdw.tms.dao.ProjectDao"> |
||||
<mapper namespace="com.msdw.tms.dao.ProjectHiddenDao"> |
||||
|
||||
<select id="selectByProjectId" resultType="com.msdw.tms.entity.ProjectHiddenEntity"> |
||||
SELECT is_hidden FROM tms_project_hidden WHERE project_id = #{projectId} |
||||
</select> |
||||
|
||||
<select id="selectByTeachId" resultType="com.msdw.tms.entity.ProjectHiddenEntity"> |
||||
SELECT is_hidden FROM tms_project_hidden WHERE teach_id = #{teachId} |
||||
</select> |
||||
|
||||
</mapper> |
Loading…
Reference in new issue