1.替换部分操作为框架自带方法

master
x_z 3 years ago
parent 5ec1c1be42
commit dae03cdff0

@ -225,7 +225,7 @@ public class LoginController {
}
AuthLicense authLicense = new AuthLicense();
if (params.get("appid") != null) {
authLicense = authLicenseDao.get(params.get("appid").toString());
authLicense = authLicenseDao.selectById(params.get("appid").toString());
} else {
String appid = AppUtils.getAppid();
authLicense.setId(appid);
@ -240,7 +240,7 @@ public class LoginController {
authLicense.setCompanyName(companyEntity.getCompanyName());
authLicense.setCreateDate(new Date());
authLicenseDao.romveByCustomerId(authAdmin.getCustomerId() + "");
authLicenseDao.save(authLicense);
authLicenseDao.insert(authLicense);
}
return ResultVOUtils.success(authLicense);
}

@ -8,14 +8,6 @@ import org.apache.ibatis.annotations.Param;
@Mapper
public interface AuthLicenseDao extends BaseMapper<AuthLicense> {
AuthLicense get(String id);
int save(AuthLicense authLicense);
int update(AuthLicense authLicense);
int remove(String appid);
int romveByCustomerId(String customerId);
/**

@ -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

Loading…
Cancel
Save