fix: 修复 application signature 请求失败问题
This commit is contained in:
@@ -22,7 +22,7 @@
|
|||||||
asg.*,
|
asg.*,
|
||||||
cu.id as c_id,
|
cu.id as c_id,
|
||||||
cu.name as c_name,
|
cu.name as c_name,
|
||||||
cu.user_name as c_user_name,
|
cu.user_name as c_user_name
|
||||||
FROM
|
FROM
|
||||||
application_signature asg
|
application_signature asg
|
||||||
left join sys_user cu on asg.create_user_id = cu.id
|
left join sys_user cu on asg.create_user_id = cu.id
|
||||||
|
|||||||
@@ -19,11 +19,13 @@
|
|||||||
<association property="createUser" columnPrefix="cu_" javaType="net.geedge.asw.module.sys.entity.SysUserEntity">
|
<association property="createUser" columnPrefix="cu_" javaType="net.geedge.asw.module.sys.entity.SysUserEntity">
|
||||||
<id property="id" column="id"/>
|
<id property="id" column="id"/>
|
||||||
<result property="name" column="name"/>
|
<result property="name" column="name"/>
|
||||||
|
<result property="userName" column="user_name"/>
|
||||||
</association>
|
</association>
|
||||||
|
|
||||||
<association property="updateUser" columnPrefix="uu_" javaType="net.geedge.asw.module.sys.entity.SysUserEntity">
|
<association property="updateUser" columnPrefix="uu_" javaType="net.geedge.asw.module.sys.entity.SysUserEntity">
|
||||||
<id property="id" column="id"/>
|
<id property="id" column="id"/>
|
||||||
<result property="name" column="name"/>
|
<result property="name" column="name"/>
|
||||||
|
<result property="userName" column="user_name"/>
|
||||||
</association>
|
</association>
|
||||||
|
|
||||||
<association property="useUser" columnPrefix="u_" javaType="cn.hutool.json.JSONObject">
|
<association property="useUser" columnPrefix="u_" javaType="cn.hutool.json.JSONObject">
|
||||||
@@ -40,9 +42,11 @@
|
|||||||
|
|
||||||
cu.id AS cu_id,
|
cu.id AS cu_id,
|
||||||
cu.name AS cu_name,
|
cu.name AS cu_name,
|
||||||
|
cu.user_name AS cu_user_name,
|
||||||
|
|
||||||
uu.id AS uu_id,
|
uu.id AS uu_id,
|
||||||
uu.name AS uu_name,
|
uu.name AS uu_name,
|
||||||
|
uu.user_name AS uu_user_name,
|
||||||
|
|
||||||
es.user_id AS u_id,
|
es.user_id AS u_id,
|
||||||
u.name AS u_name,
|
u.name AS u_name,
|
||||||
|
|||||||
Reference in New Issue
Block a user