Commit 6b9911ba authored by 廖旭伟's avatar 廖旭伟

测试bug修改

parent 05830464
...@@ -35,4 +35,8 @@ public class BussinesscardRecordVo extends BaseEntityLong { ...@@ -35,4 +35,8 @@ public class BussinesscardRecordVo extends BaseEntityLong {
* 用户手机号 * 用户手机号
*/ */
private String mobile; private String mobile;
/**
* 单位名称
*/
private String companyName;
} }
\ No newline at end of file
...@@ -87,6 +87,7 @@ public class BussinesscardRecordServiceImpl extends AbstractCRUDServiceImpl<Buss ...@@ -87,6 +87,7 @@ public class BussinesscardRecordServiceImpl extends AbstractCRUDServiceImpl<Buss
item.setRealName(userEntity.getRealName()); item.setRealName(userEntity.getRealName());
item.setMobile(userEntity.getMobile()); item.setMobile(userEntity.getMobile());
item.setEmail(userEntity.getEmail()); item.setEmail(userEntity.getEmail());
item.setCompanyName(userEntity.getCompanyAdress());
} }
}); });
} }
......
...@@ -46,6 +46,7 @@ public class FeedbackServiceImpl extends AbstractCRUDServiceImpl<FeedbackDao, Fe ...@@ -46,6 +46,7 @@ public class FeedbackServiceImpl extends AbstractCRUDServiceImpl<FeedbackDao, Fe
entity.setFeedbackName(userEntity.getRealName()); entity.setFeedbackName(userEntity.getRealName());
entity.setPhotoPath(userEntity.getPhotoPath()); entity.setPhotoPath(userEntity.getPhotoPath());
entity.setFeedbackName(userEntity.getRealName()); entity.setFeedbackName(userEntity.getRealName());
entity.setCompanyName(userEntity.getCompanyAdress());
if(StringUtils.isEmpty(entity.getContactInfo())){ if(StringUtils.isEmpty(entity.getContactInfo())){
entity.setContactInfo(userEntity.getMobile()); entity.setContactInfo(userEntity.getMobile());
} }
...@@ -79,6 +80,7 @@ public class FeedbackServiceImpl extends AbstractCRUDServiceImpl<FeedbackDao, Fe ...@@ -79,6 +80,7 @@ public class FeedbackServiceImpl extends AbstractCRUDServiceImpl<FeedbackDao, Fe
if(userEntity!=null) { if(userEntity!=null) {
item.setPhotoPath(userEntity.getPhotoPath()); item.setPhotoPath(userEntity.getPhotoPath());
item.setFeedbackName(userEntity.getRealName()); item.setFeedbackName(userEntity.getRealName());
item.setCompanyName(userEntity.getCompanyAdress());
if(StringUtils.isEmpty(item.getContactInfo())){ if(StringUtils.isEmpty(item.getContactInfo())){
item.setContactInfo(userEntity.getMobile()); item.setContactInfo(userEntity.getMobile());
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment