增加简介

main
rong.liu 11 months ago
parent cfeb9c3073
commit db2e9c8dd4
  1. 3
      users/src/main/java/com/huoran/users/entity/EnterpriseCertification.java
  2. 6
      users/src/main/java/com/huoran/users/mapper/xml/EnterpriseCertificationMapper.xml

@ -110,6 +110,9 @@ public class EnterpriseCertification implements Serializable {
private String logoUrl;
@ApiModelProperty(value = "简介")
@TableField(exist = false)
private String briefIntroduction;
@ApiModelProperty(value = "认证状态(0默认未认证 1.认证中2.已认证)")

@ -16,7 +16,8 @@
IFNULL( cla.province, '未完善' ) AS province,
IFNULL( cla.city, '未完善' ) AS city,
cla.id AS teamId,
logo_url
logo_url,
brief_introduction
FROM
hr_enterprise_certification c
INNER JOIN hr_user_account a ON a.id = c.account_id
@ -80,7 +81,8 @@
IFNULL( cla.province, '未完善' ) AS province,
IFNULL( cla.city, '未完善' ) AS city,
cla.id AS teamId,
logo_url
logo_url,
brief_introduction
FROM
hr_enterprise_certification c
INNER JOIN hr_user_account a ON a.id = c.account_id

Loading…
Cancel
Save