Browse Source

工作人员

dev
lichao 2 years ago
parent
commit
d9dadb7c2f
  1. 14
      epmet-user/epmet-user-server/src/main/java/com/epmet/service/impl/CustomerStaffServiceImpl.java

14
epmet-user/epmet-user-server/src/main/java/com/epmet/service/impl/CustomerStaffServiceImpl.java

@ -514,13 +514,13 @@ public class CustomerStaffServiceImpl extends BaseServiceImpl<CustomerStaffDao,
staffEntity.setMobile(fromDTO.getMobile());
staffEntity.setGender(fromDTO.getGender());
staffEntity.setWorkType(fromDTO.getWorkType());
staffEntity.setIdCard(customerStaffDTO.getIdCard());
staffEntity.setCulture(customerStaffDTO.getCulture());
staffEntity.setDuty(customerStaffDTO.getDuty());
staffEntity.setPartyPosition(customerStaffDTO.getPartyPosition());
staffEntity.setViliagePosition(customerStaffDTO.getViliagePosition());
staffEntity.setRemark(customerStaffDTO.getRemark());
staffEntity.setAddress(customerStaffDTO.getAddress());
staffEntity.setIdCard(fromDTO.getIdCard());
staffEntity.setCulture(fromDTO.getCulture());
staffEntity.setDuty(fromDTO.getDuty());
staffEntity.setPartyPosition(fromDTO.getPartyPosition());
staffEntity.setViliagePosition(fromDTO.getViliagePosition());
staffEntity.setRemark(fromDTO.getRemark());
staffEntity.setAddress(fromDTO.getAddress());
baseDao.updateById(staffEntity);
//清空权限关联

Loading…
Cancel
Save