1234567891011121314151617181920212223242526272829 |
- <?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="cn.ezhizao.project.business.lable.mapper.BizLableMapper">
- <resultMap type="cn.ezhizao.project.business.lable.domain.BizLable" id="BizLableResult">
- <id column="id" property="id"/>
- </resultMap>
- <select id="getList" parameterType="BizLable" resultMap="BizLableResult">
- SELECT * FROM biz_lable
- <trim prefix=" WHERE" suffix="" suffixOverrides="AND">
- deleted = 0
- <if test="lable != null and lable != ''"> AND lable = #{lable}</if>
- </trim>
- </select>
- <delete id="physicalDelete">
- DELETE FROM biz_lable
- <trim prefix=" WHERE" suffix="" suffixOverrides="AND">
- <if test="id != null">
- id = #{id} AND
- </if>
- <!-- 删除条件为其他外键可以在这里加 -->
- </trim>
- </delete>
- </mapper>
|