|
|
@@ -2368,7 +2368,7 @@ public class CustomerServiceImpl extends BaseMybatisDao<UserMapper> implements C
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public int updateUserDate(String uid,Integer province, Integer city, Integer area, String businessScope, String intendedProject) {
|
|
|
+ public int updateUserDate(String uid,Integer province, Integer city, Integer area, String businessScope, String intendedProject,String introduction) {
|
|
|
OrganizationIdentity oi =new OrganizationIdentity();
|
|
|
oi.setUid(uid);
|
|
|
oi.setLocationProvince(province);
|
|
|
@@ -2381,6 +2381,10 @@ public class CustomerServiceImpl extends BaseMybatisDao<UserMapper> implements C
|
|
|
OrganizationIdentity use=organizationIdentityMapper.selectOrgIdentityByUserId(uid);
|
|
|
oi.setBusinessScope(businessScope);
|
|
|
oi.setIntendedProject(intendedProject);
|
|
|
+ User user=new User();
|
|
|
+ user.setId(uid);
|
|
|
+ user.setIntroduction(introduction);
|
|
|
+ userMapper.updateByPrimaryKeySelective(user);
|
|
|
return organizationIdentityMapper.updateServiceByUid(oi);
|
|
|
}
|
|
|
|