问题修改
This commit is contained in:
parent
949f592b45
commit
f281707f43
|
|
@ -70,4 +70,6 @@ public class ProAuthorizeDetails {
|
|||
* 签名类型
|
||||
*/
|
||||
private Byte signType;
|
||||
|
||||
private String phone;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -46,9 +46,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
</insert>
|
||||
|
||||
<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)
|
||||
values (#{parentId}, #{name}, #{idNumber}, #{frontUrl}, #{backUrl}, #{createBy}, NOW(),#{createBy},NOW())
|
||||
values (#{parentId}, #{name}, #{idNumber},#{phone}, #{frontUrl}, #{backUrl}, #{createBy}, NOW(),#{createBy},NOW())
|
||||
</insert>
|
||||
<update id="updateAuthorizeInfoSign">
|
||||
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,
|
||||
`name`,
|
||||
id_number as idNumber,
|
||||
phone,
|
||||
front_url as frontUrl,
|
||||
back_url as backUrl,
|
||||
sign_url as signName,
|
||||
|
|
|
|||
Loading…
Reference in New Issue