| | |
| | | <select id="selectCount" resultType="java.lang.Integer" parameterType="java.lang.String"> |
| | | select count(*) from lf.sys_token |
| | | <where> |
| | | <if test="token != null"> |
| | | token = #{token} |
| | | 1=1 |
| | | <if test="name != null"> |
| | | and token = #{name} |
| | | </if> |
| | | |
| | | <if test="type != null"> |
| | | and type = #{type} |
| | | </if> |
| | | </where> |
| | | </select> |
| | |
| | | <select id="selectByPage" resultMap="resultMap" resultType="com.lf.server.entity.sys.TokenEntity"> |
| | | select * from lf.sys_token |
| | | <where> |
| | | <if test="token != null"> |
| | | token = #{token} |
| | | 1=1 |
| | | <if test="name != null"> |
| | | and token = #{name} |
| | | </if> |
| | | |
| | | <if test="type != null"> |
| | | and type = #{type} |
| | | </if> |
| | | </where> |
| | | order by id |