|
|
|
@ -2,50 +2,6 @@
|
|
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
|
|
|
|
|
|
|
|
|
|
<mapper namespace="com.glxp.udi.admin.dao.auth.AuthLicenseDao">
|
|
|
|
|
<select id="get" resultType="com.glxp.udi.admin.entity.auth.AuthLicense">
|
|
|
|
|
SELECT *
|
|
|
|
|
FROM auth_license
|
|
|
|
|
where id = #{id}
|
|
|
|
|
</select>
|
|
|
|
|
<insert id="save" keyProperty="id" parameterType="com.glxp.udi.admin.entity.auth.AuthLicense">
|
|
|
|
|
INSERT INTO auth_license(id, appid, name, apiKey, secretKey, createDate, customerId, companyName)
|
|
|
|
|
values (#{id}, #{appid}, #{name,jdbcType=VARCHAR}, #{apiKey,jdbcType=VARCHAR},
|
|
|
|
|
#{secretKey,jdbcType=VARCHAR}, #{createDate,jdbcType=TIMESTAMP}, #{customerId}, #{companyName})
|
|
|
|
|
</insert>
|
|
|
|
|
|
|
|
|
|
<update id="update" parameterType="com.glxp.udi.admin.entity.auth.AuthLicense">
|
|
|
|
|
UPDATE auth_license
|
|
|
|
|
<set>
|
|
|
|
|
<if test="appid != null">
|
|
|
|
|
appid=#{appid},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="name != null">
|
|
|
|
|
name=#{name},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="apiKey != null">
|
|
|
|
|
apiKey=#{apiKey},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="secretKey != null">
|
|
|
|
|
secretKey=#{secretKey},
|
|
|
|
|
</if>
|
|
|
|
|
<if test="createDate != null">
|
|
|
|
|
createDate=#{createDate}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="customerId != null">
|
|
|
|
|
customerId=#{customerId}
|
|
|
|
|
</if>
|
|
|
|
|
<if test="companyName != null">
|
|
|
|
|
companyName=#{companyName}
|
|
|
|
|
</if>
|
|
|
|
|
</set>
|
|
|
|
|
WHERE id=#{id}
|
|
|
|
|
</update>
|
|
|
|
|
|
|
|
|
|
<delete id="remove">
|
|
|
|
|
delete
|
|
|
|
|
from auth_license
|
|
|
|
|
where id = #{id}
|
|
|
|
|
</delete>
|
|
|
|
|
|
|
|
|
|
<delete id="romveByCustomerId">
|
|
|
|
|
delete
|
|
|
|
|