【新增】企业信息表字段新增

This commit is contained in:
nmy 2023-12-05 19:03:57 +08:00
parent 43cdae60bf
commit 308988605c
2 changed files with 8 additions and 8 deletions

View File

@ -19,7 +19,7 @@ spring:
config:
# 配置中心地址
server-addr: 192.168.0.14:8848
namespace: zlpt_cloud_dev
namespace: zlp t_cloud_dev
# 配置文件格式
file-extension: yml
# 共享配置

View File

@ -76,7 +76,7 @@
#{authPhone,jdbcType=VARCHAR}, #{authDocument,jdbcType=VARCHAR}, #{idFaceUrl,jdbcType=VARCHAR},
#{idNationUrl,jdbcType=VARCHAR}, #{createTime,jdbcType=VARCHAR}, #{creator,jdbcType=INTEGER},
#{auditor,jdbcType=INTEGER}, #{auditTime,jdbcType=VARCHAR}, #{auditRemark,jdbcType=VARCHAR},
#{status,jdbcType=VARCHAR},#{logoUrl,jdbcType=VARCHAR}, #{updateTime,jdbcType=VARCHAR},#{legalFaceUrl,jdbcType=VARCHAR},#{legalNationUrl,jdbcType=VARCHAR})
#{status,jdbcType=VARCHAR},#{logoUrl,jdbcType=VARCHAR}, #{updateTime,jdbcType=VARCHAR},#{legalFaceUrl},#{legalNationUrl})
</insert>
<insert id="insertSelective" keyColumn="company_id" keyProperty="companyId" parameterType="com.bonus.zlpt.company.domain.BmCompanyInfo" useGeneratedKeys="true">
@ -254,10 +254,10 @@
#{updateTime,jdbcType=VARCHAR},
</if>
<if test="legalFaceUrl != null and legalFaceUrl != ''">
#{legalFaceUrl,jdbcType=VARCHAR},
#{legalFaceUrl},
</if>
<if test="legalNationUrl != null and legalNationUrl != ''">
#{legalNationUrl,jdbcType=VARCHAR},
#{legalNationUrl},
</if>
</trim>
</insert>
@ -348,10 +348,10 @@
update_time = #{updateTime,jdbcType=VARCHAR},
</if>
<if test="legalFaceUrl != null and legalFaceUrl != ''">
legal_face_url = #{legalFaceUrl,jdbcType=VARCHAR},
legal_face_url = #{legalFaceUrl},
</if>
<if test="legalNationUrl != null and legalNationUrl != ''">
legal_nation_url = #{legalNationUrl,jdbcType=VARCHAR},
legal_nation_url = #{legalNationUrl},
</if>
</set>
where company_id = #{companyId,jdbcType=INTEGER}
@ -387,8 +387,8 @@
`status` = #{status,jdbcType=VARCHAR},
logo_url = #{logoUrl,jdbcType=VARCHAR},
update_time = #{updateTime,jdbcType=VARCHAR},
legal_face_url = #{legalFaceUrl,javaType=VARCHAR},
legal_nation_url = #{legalNationUrl,javaType=VARCHAR}
legal_face_url = #{legalFaceUrl},
legal_nation_url = #{legalNationUrl}
where company_id = #{companyId,jdbcType=INTEGER}
</update>