Commit 8f129440 authored by 赵啸非's avatar 赵啸非

添加接口附件解密地址

parent 60dae512
...@@ -25,7 +25,7 @@ import java.util.List; ...@@ -25,7 +25,7 @@ import java.util.List;
import static com.arcsoft.face.toolkit.ImageFactory.getRGBData; import static com.arcsoft.face.toolkit.ImageFactory.getRGBData;
@Slf4j @Slf4j
@Component //@Component
public class ArcsoftFaceUtil { public class ArcsoftFaceUtil {
@Value(value = "${faceAppId}") @Value(value = "${faceAppId}")
......
...@@ -20,7 +20,7 @@ import java.util.List; ...@@ -20,7 +20,7 @@ import java.util.List;
* @author zxfei * @author zxfei
* @date 2022-08-08 * @date 2022-08-08
*/ */
@Service("peopleInfoService") //@Service("peopleInfoService")
public class PeopleInfoServiceImpl extends AbstractCRUDServiceImpl<PeopleInfoDao, PeopleInfoEntity, Long> implements PeopleInfoService { public class PeopleInfoServiceImpl extends AbstractCRUDServiceImpl<PeopleInfoDao, PeopleInfoEntity, Long> implements PeopleInfoService {
@Override @Override
......
...@@ -44,7 +44,7 @@ import java.util.stream.Collectors; ...@@ -44,7 +44,7 @@ import java.util.stream.Collectors;
* @author zxfei * @author zxfei
* @date 2022-08-03 * @date 2022-08-03
*/ */
@Service("sysFaceService") //@Service("sysFaceService")
public class SysFaceServiceImpl extends AbstractCRUDServiceImpl<SysFaceDao, SysFaceEntity, String> implements SysFaceService { public class SysFaceServiceImpl extends AbstractCRUDServiceImpl<SysFaceDao, SysFaceEntity, String> implements SysFaceService {
private Integer passRate = 80; private Integer passRate = 80;
......
...@@ -21,7 +21,7 @@ import java.util.Date; ...@@ -21,7 +21,7 @@ import java.util.Date;
* @author zxfei * @author zxfei
* @date 2022-08-03 * @date 2022-08-03
*/ */
@Service("sysIdentityService") //@Service("sysIdentityService")
public class SysIdentityServiceImpl extends AbstractCRUDServiceImpl<SysIdentityDao, SysIdentityEntity, String> implements SysIdentityService { public class SysIdentityServiceImpl extends AbstractCRUDServiceImpl<SysIdentityDao, SysIdentityEntity, String> implements SysIdentityService {
@Value(value = "${sm4key}") @Value(value = "${sm4key}")
......
...@@ -50,16 +50,5 @@ public class WindowHallServiceImpl extends AbstractCRUDCacheServiceImpl<WindowHa ...@@ -50,16 +50,5 @@ public class WindowHallServiceImpl extends AbstractCRUDCacheServiceImpl<WindowHa
WindowEntity windowEntity = collectWin.get(item.getWindowId()); WindowEntity windowEntity = collectWin.get(item.getWindowId());
item.setFromnum(windowEntity == null ? "" : windowEntity.getFromnum()); item.setFromnum(windowEntity == null ? "" : windowEntity.getFromnum());
}); });
/* List<Long> collect = list.stream().map(i -> i.getWindowId()).distinct().collect(Collectors.toList());
if (!ObjectUtils.isEmpty(collect)) {
WindowQuery windowQuery = new WindowQuery();
windowQuery.setIdList(collect);
Map<Long, WindowEntity> collectWin = windowService.find(windowQuery).stream().collect(Collectors.toMap(x -> x.getId(), y -> y, (o, n) -> n));
list.forEach(item -> {
WindowEntity windowEntity = collectWin.get(item.getWindowId());
item.setFromnum(windowEntity == null ? "" : windowEntity.getFromnum());
});
}*/
} }
} }
\ No newline at end of file
...@@ -55,19 +55,15 @@ import static com.mortals.xhx.common.key.Constant.PARAM_SERVER_PHP_HTTP_URL; ...@@ -55,19 +55,15 @@ import static com.mortals.xhx.common.key.Constant.PARAM_SERVER_PHP_HTTP_URL;
public class WindowServiceImpl extends AbstractCRUDCacheServiceImpl<WindowDao, WindowEntity, Long> implements WindowService { public class WindowServiceImpl extends AbstractCRUDCacheServiceImpl<WindowDao, WindowEntity, Long> implements WindowService {
@Autowired @Autowired
@Lazy
private WorkmanService workmanService; private WorkmanService workmanService;
@Autowired @Autowired
@Lazy
private WindowBusinessService windowBusinessService; private WindowBusinessService windowBusinessService;
@Autowired @Autowired
@Lazy
private WindowMatterService windowMatterService; private WindowMatterService windowMatterService;
@Autowired @Autowired
@Lazy @Lazy
private WindowHallService windowHallService; private WindowHallService windowHallService;
@Autowired @Autowired
@Lazy
private BusinessService businessService; private BusinessService businessService;
......
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