| | |
| | | </select> |
| | | |
| | | <select id="selectTokenAll" resultMap="resultMap" resultType="com.lf.server.entity.data.TokenEntity"> |
| | | select * from lf.sys_token |
| | | select * from lf.sys_token order by id |
| | | </select> |
| | | |
| | | <select id="selectToken" resultMap="resultMap" resultType="com.lf.server.entity.data.TokenEntity"> |
| | |
| | | (token,duration,expire,type,ip,create_user,create_time) |
| | | values |
| | | <foreach collection="list" item="item" index="index" separator="," > |
| | | (#{item.token},#{item.duration},#{item.expire},#{item.type},#{item.ip},#{item.createUser} now()) |
| | | (#{item.token},#{item.duration},#{item.expire},#{item.type},#{item.ip},#{item.createUser}, now()) |
| | | </foreach> |
| | | </insert> |
| | | |