单点登录企业添加省、市字段
This commit is contained in:
@@ -143,6 +143,12 @@ public class Company extends BaseEntity
|
|||||||
@ApiModelProperty("是否人力资源机构(Y是,N否)")
|
@ApiModelProperty("是否人力资源机构(Y是,N否)")
|
||||||
private String isHrs;
|
private String isHrs;
|
||||||
|
|
||||||
|
@ApiModelProperty("省")
|
||||||
|
private String companyProvince;
|
||||||
|
|
||||||
|
@ApiModelProperty("市")
|
||||||
|
private String companyCity;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 岗位列表
|
* 岗位列表
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -300,6 +300,8 @@ public class SsoService {
|
|||||||
company.setNature(object.getString("entType"));
|
company.setNature(object.getString("entType"));
|
||||||
company.setDescription(object.getString("entIntro"));
|
company.setDescription(object.getString("entIntro"));
|
||||||
company.setIsHrs(object.getString("isServiceProvider"));//是否是人力资源机构
|
company.setIsHrs(object.getString("isServiceProvider"));//是否是人力资源机构
|
||||||
|
company.setCompanyProvince(object.getString("entProvince"));
|
||||||
|
company.setCompanyCity(object.getString("entCity"));
|
||||||
// company.setScale(object.getString("entSize"));
|
// company.setScale(object.getString("entSize"));
|
||||||
//添加联系人
|
//添加联系人
|
||||||
CompanyContact contact=new CompanyContact();
|
CompanyContact contact=new CompanyContact();
|
||||||
|
|||||||
Reference in New Issue
Block a user