【新增】logoUrl字段新增
This commit is contained in:
parent
3699da73e3
commit
a000ad6401
|
|
@ -176,6 +176,9 @@ public class BmCompanyInfo implements Serializable {
|
|||
@Excel(name = "状态(0待审核,1通过,2驳回)")
|
||||
private String status;
|
||||
|
||||
@Excel(name = "公司logo")
|
||||
private String logoUrl;
|
||||
|
||||
@Excel(name = "修改时间")
|
||||
private String updateTime;
|
||||
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@
|
|||
<result column="audit_time" jdbcType="VARCHAR" property="auditTime" />
|
||||
<result column="audit_remark" jdbcType="VARCHAR" property="auditRemark" />
|
||||
<result column="status" jdbcType="VARCHAR" property="status" />
|
||||
<result column="logo_url" jdbcType="VARCHAR" property="logoUrl" />
|
||||
<result column="update_time" jdbcType="VARCHAR" property="updateTime" />
|
||||
</resultMap>
|
||||
|
||||
|
|
@ -39,7 +40,7 @@
|
|||
operate_address, certificateType, id_number, business_license, legal_person, invitation_code,
|
||||
invitation_co_name, business_scope, auth_person, auth_id_number, auth_phone, auth_document,
|
||||
id_face_url, id_nation_url, create_time, creator, auditor, audit_time, audit_remark,
|
||||
`status`, update_time
|
||||
`status`, logo_url,update_time
|
||||
</sql>
|
||||
|
||||
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
||||
|
|
@ -64,7 +65,7 @@
|
|||
auth_phone, auth_document, id_face_url,
|
||||
id_nation_url, create_time, creator,
|
||||
auditor, audit_time, audit_remark,
|
||||
`status`, update_time)
|
||||
`status`,logo_url update_time)
|
||||
values (#{companyName,jdbcType=VARCHAR}, #{companyType,jdbcType=VARCHAR}, #{companyLtd,jdbcType=VARCHAR},
|
||||
#{creditCode,jdbcType=VARCHAR}, #{registerAddress,jdbcType=VARCHAR}, #{operateAddress,jdbcType=VARCHAR},
|
||||
#{certificatetype,jdbcType=VARCHAR}, #{idNumber,jdbcType=VARCHAR}, #{businessLicense,jdbcType=VARCHAR},
|
||||
|
|
@ -73,7 +74,7 @@
|
|||
#{authPhone,jdbcType=VARCHAR}, #{authDocument,jdbcType=VARCHAR}, #{idFaceUrl,jdbcType=VARCHAR},
|
||||
#{idNationUrl,jdbcType=VARCHAR}, #{createTime,jdbcType=VARCHAR}, #{creator,jdbcType=VARCHAR},
|
||||
#{auditor,jdbcType=INTEGER}, #{auditTime,jdbcType=VARCHAR}, #{auditRemark,jdbcType=VARCHAR},
|
||||
#{status,jdbcType=VARCHAR}, #{updateTime,jdbcType=VARCHAR})
|
||||
#{status,jdbcType=VARCHAR},#{logoUrl,jdbcType=VARCHAR}, #{updateTime,jdbcType=VARCHAR})
|
||||
</insert>
|
||||
|
||||
<insert id="insertSelective" keyColumn="company_id" keyProperty="companyId" parameterType="com.bonus.zlpt.company.domain.BmCompanyInfo" useGeneratedKeys="true">
|
||||
|
|
@ -155,6 +156,9 @@
|
|||
<if test="status != null and status != ''">
|
||||
`status`,
|
||||
</if>
|
||||
<if test="logoUrl != null and logoUrl != ''">
|
||||
logo_url,
|
||||
</if>
|
||||
<if test="updateTime != null and updateTime != ''">
|
||||
update_time,
|
||||
</if>
|
||||
|
|
@ -235,6 +239,9 @@
|
|||
<if test="status != null and status != ''">
|
||||
#{status,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="logoUrl != null and logoUrl != ''">
|
||||
#{logoUrl,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="updateTime != null and updateTime != ''">
|
||||
#{updateTime,jdbcType=VARCHAR},
|
||||
</if>
|
||||
|
|
@ -320,6 +327,9 @@
|
|||
<if test="status != null and status != ''">
|
||||
`status` = #{status,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="logoUrl != null and logoUrl != ''">
|
||||
logo_url = #{logoUrl,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="updateTime != null and updateTime != ''">
|
||||
update_time = #{updateTime,jdbcType=VARCHAR},
|
||||
</if>
|
||||
|
|
@ -355,6 +365,7 @@
|
|||
audit_time = #{auditTime,jdbcType=VARCHAR},
|
||||
audit_remark = #{auditRemark,jdbcType=VARCHAR},
|
||||
`status` = #{status,jdbcType=VARCHAR},
|
||||
logo_url = #{logoUrl,jdbcType=VARCHAR},
|
||||
update_time = #{updateTime,jdbcType=VARCHAR}
|
||||
where company_id = #{companyId,jdbcType=INTEGER}
|
||||
</update>
|
||||
|
|
|
|||
Loading…
Reference in New Issue