Browse Source

添加打印日志

dev
wanggongfeng 3 years ago
parent
commit
510c42b362
  1. 7
      epmet-plugins-module/pli-power-base/pli-power-base-server/src/main/java/com/epmet/plugin/power/modules/rent/service/impl/RentContractInfoServiceImpl.java

7
epmet-plugins-module/pli-power-base/pli-power-base-server/src/main/java/com/epmet/plugin/power/modules/rent/service/impl/RentContractInfoServiceImpl.java

@ -40,6 +40,7 @@ import com.epmet.plugin.power.modules.rent.redis.RentContractInfoRedis;
import com.epmet.plugin.power.modules.rent.service.RentContractFileService;
import com.epmet.plugin.power.modules.rent.service.RentContractInfoService;
import com.epmet.plugin.power.modules.rent.service.RentTenantInfoService;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@ -56,6 +57,7 @@ import java.util.stream.Collectors;
* @since v1.0.0 2022-04-22
*/
@Service
@Slf4j
public class RentContractInfoServiceImpl extends BaseServiceImpl<RentContractInfoDao, RentContractInfoEntity> implements RentContractInfoService {
@Autowired
@ -328,7 +330,10 @@ public class RentContractInfoServiceImpl extends BaseServiceImpl<RentContractInf
formDTO.setUser(user);
epmetUserOpenFeignClient.updateImage(formDTO);
log.info("++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++formDTO:"+ formDTO.toString());
Result result = epmetUserOpenFeignClient.updateImage(formDTO);
log.info("++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++result:"+ result.toString());
});

Loading…
Cancel
Save