问题修改

This commit is contained in:
hayu 2025-07-31 16:42:40 +08:00
parent 949f592b45
commit f281707f43
2 changed files with 5 additions and 2 deletions

View File

@ -70,4 +70,6 @@ public class ProAuthorizeDetails {
* 签名类型 * 签名类型
*/ */
private Byte signType; private Byte signType;
private String phone;
} }

View File

@ -46,9 +46,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</insert> </insert>
<insert id="insertProAuthorizeDetails"> <insert id="insertProAuthorizeDetails">
insert into pro_authorize_user(parent_id, name, id_number, front_url, back_url, create_by, insert into pro_authorize_user(parent_id, name, id_number, phone,front_url, back_url, create_by,
create_time, update_by, update_time) create_time, update_by, update_time)
values (#{parentId}, #{name}, #{idNumber}, #{frontUrl}, #{backUrl}, #{createBy}, NOW(),#{createBy},NOW()) values (#{parentId}, #{name}, #{idNumber},#{phone}, #{frontUrl}, #{backUrl}, #{createBy}, NOW(),#{createBy},NOW())
</insert> </insert>
<update id="updateAuthorizeInfoSign"> <update id="updateAuthorizeInfoSign">
update pro_authorize_user set sign_url = #{signName}, sign_type = #{signType} update pro_authorize_user set sign_url = #{signName}, sign_type = #{signType}
@ -131,6 +131,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
SELECT id, SELECT id,
`name`, `name`,
id_number as idNumber, id_number as idNumber,
phone,
front_url as frontUrl, front_url as frontUrl,
back_url as backUrl, back_url as backUrl,
sign_url as signName, sign_url as signName,