| | |
| | | where check_point_id = #{checkPointId} |
| | | </select> |
| | | |
| | | <insert id="insertBaseCheckPoint" parameterType="BaseCheckPoint"> |
| | | <insert id="insertBaseCheckPoint" parameterType="BaseCheckPoint" useGeneratedKeys="true" keyProperty="checkPointId"> |
| | | insert into tr_base_check_point |
| | | <trim prefix="(" suffix=")" suffixOverrides=","> |
| | | <if test="checkPointId != null ">check_point_id,</if> |
| | |
| | | #{checkPointId} |
| | | </foreach> |
| | | </delete> |
| | | |
| | | |
| | | |
| | | <!-- BaseCheckPoint getBaseCheckPointById(Long checkPointId);--> |
| | | <select id="getBaseCheckPointById" resultType="com.ruoyi.project.tr.baseCheckPoint.domain.BaseCheckPoint"> |
| | | select * from tr_base_check_point where check_point_id = #{checkPointId} |
| | | </select> |
| | | </mapper> |