修改了新增流量方用户接口,使其能够往数据库中的operator_id_evcs字段中添加值
This commit is contained in:
parent
ee36497251
commit
71de09076e
@ -58,6 +58,8 @@ public class XhpcInternetUserController extends BaseController {
|
|||||||
if (iXhpcUserService.checkUserNameUnique(sysUser.getUserName()) > 0) {
|
if (iXhpcUserService.checkUserNameUnique(sysUser.getUserName()) > 0) {
|
||||||
return AjaxResult.error("新增用户'" + sysUser.getUserName() + "'失败,登录账号已存在");
|
return AjaxResult.error("新增用户'" + sysUser.getUserName() + "'失败,登录账号已存在");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
iXhpcInternetUserService.insert(xhpcInternetUser);
|
iXhpcInternetUserService.insert(xhpcInternetUser);
|
||||||
sysUser.setInternetUserId(xhpcInternetUser.getInternetUserId());
|
sysUser.setInternetUserId(xhpcInternetUser.getInternetUserId());
|
||||||
iXhpcUserService.insertUser(sysUser);
|
iXhpcUserService.insertUser(sysUser);
|
||||||
|
|||||||
@ -132,6 +132,21 @@ public class XhpcInternetUser extends BaseEntity {
|
|||||||
*/
|
*/
|
||||||
private String delFlag;
|
private String delFlag;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 对接第三方平台及监管平台的operatorId
|
||||||
|
*/
|
||||||
|
private String operatorIdEvcs;
|
||||||
|
|
||||||
|
public String getOperatorIdEvcs() {
|
||||||
|
|
||||||
|
return operatorIdEvcs;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setOperatorIdEvcs(String operatorIdEvcs) {
|
||||||
|
|
||||||
|
this.operatorIdEvcs = operatorIdEvcs;
|
||||||
|
}
|
||||||
|
|
||||||
public Long getInternetUserId() {
|
public Long getInternetUserId() {
|
||||||
return internetUserId;
|
return internetUserId;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -29,6 +29,7 @@
|
|||||||
<result column="update_by" property="updateBy"/>
|
<result column="update_by" property="updateBy"/>
|
||||||
<result column="update_time" property="updateTime"/>
|
<result column="update_time" property="updateTime"/>
|
||||||
<result column="remark" property="remark"/>
|
<result column="remark" property="remark"/>
|
||||||
|
<!-- <result column="operator_id_evcs" property="operatorIdEvcs"/>-->
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
|
|
||||||
@ -104,7 +105,10 @@
|
|||||||
update_time,
|
update_time,
|
||||||
</if>
|
</if>
|
||||||
<if test="null != remark and '' != remark">
|
<if test="null != remark and '' != remark">
|
||||||
remark
|
remark,
|
||||||
|
</if>
|
||||||
|
<if test="null != operatorIdEvcs and '' != operatorIdEvcs">
|
||||||
|
operator_id_evcs
|
||||||
</if>
|
</if>
|
||||||
</trim>
|
</trim>
|
||||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||||
@ -175,7 +179,10 @@
|
|||||||
#{updateTime},
|
#{updateTime},
|
||||||
</if>
|
</if>
|
||||||
<if test="null != remark and '' != remark">
|
<if test="null != remark and '' != remark">
|
||||||
#{remark}
|
#{remark},
|
||||||
|
</if>
|
||||||
|
<if test="null != operatorIdEvcs and '' != operatorIdEvcs">
|
||||||
|
#{operatorIdEvcs}
|
||||||
</if>
|
</if>
|
||||||
</trim>
|
</trim>
|
||||||
</insert>
|
</insert>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user