Your Name
2023-02-21 e23023b93f34286f5a807b0b85e9a0619a297ed7
service-common/src/main/java/com/java110/common/cmd/system/ListSystemInfoCmd.java
@@ -23,6 +23,8 @@
import com.java110.dto.systemInfo.SystemInfoDto;
import com.java110.intf.common.ISystemInfoV1InnerServiceSMO;
import com.java110.utils.cache.MappingCache;
import com.java110.utils.cache.UrlCache;
import com.java110.utils.constant.MappingConstant;
import com.java110.utils.exception.CmdException;
import com.java110.utils.util.BeanConvertUtil;
import com.java110.vo.ResultVo;
@@ -69,8 +71,8 @@
        if (count > 0) {
            systemInfoDtos = systemInfoV1InnerServiceSMOImpl.querySystemInfos(systemInfoDto);
            systemInfoDtos.get(0).setOwnerUrl(MappingCache.getValue("OWNER_WECHAT_URL"));
            systemInfoDtos.get(0).setPropertyUrl(MappingCache.getValue("STAFF_WECHAT_URL"));
            systemInfoDtos.get(0).setOwnerUrl(UrlCache.getOwnerUrl());
            systemInfoDtos.get(0).setPropertyUrl(UrlCache.getPropertyPhoneUrl());
        } else {
            systemInfoDtos = new ArrayList<>();
        }