12345678910111213141516 |
- <?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.jsh.erp.datasource.mappers.AuditProcessMapper">
- <select id="listBy" parameterType="com.jsh.erp.datasource.dto.AuditProcessQueryDTO" resultType="com.jsh.erp.datasource.vo.AuditProcessVo">
- SELECT id,`name`,type,description
- FROM audit_process
- <where>
- delete_flag = 0
- <if test="type != null and type != ''">
- AND type LIKE CONCAT('%',#{type},'%')
- </if>
- </where>
- </select>
- </mapper>
|