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

添加接口附件解密地址

parent 60dae512
......@@ -25,7 +25,7 @@ import java.util.List;
import static com.arcsoft.face.toolkit.ImageFactory.getRGBData;
@Slf4j
@Component
//@Component
public class ArcsoftFaceUtil {
@Value(value = "${faceAppId}")
......
......@@ -20,7 +20,7 @@ import java.util.List;
* @author zxfei
* @date 2022-08-08
*/
@Service("peopleInfoService")
//@Service("peopleInfoService")
public class PeopleInfoServiceImpl extends AbstractCRUDServiceImpl<PeopleInfoDao, PeopleInfoEntity, Long> implements PeopleInfoService {
@Override
......
......@@ -44,7 +44,7 @@ import java.util.stream.Collectors;
* @author zxfei
* @date 2022-08-03
*/
@Service("sysFaceService")
//@Service("sysFaceService")
public class SysFaceServiceImpl extends AbstractCRUDServiceImpl<SysFaceDao, SysFaceEntity, String> implements SysFaceService {
private Integer passRate = 80;
......
......@@ -21,7 +21,7 @@ import java.util.Date;
* @author zxfei
* @date 2022-08-03
*/
@Service("sysIdentityService")
//@Service("sysIdentityService")
public class SysIdentityServiceImpl extends AbstractCRUDServiceImpl<SysIdentityDao, SysIdentityEntity, String> implements SysIdentityService {
@Value(value = "${sm4key}")
......
......@@ -50,16 +50,5 @@ public class WindowHallServiceImpl extends AbstractCRUDCacheServiceImpl<WindowHa
WindowEntity windowEntity = collectWin.get(item.getWindowId());
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;
public class WindowServiceImpl extends AbstractCRUDCacheServiceImpl<WindowDao, WindowEntity, Long> implements WindowService {
@Autowired
@Lazy
private WorkmanService workmanService;
@Autowired
@Lazy
private WindowBusinessService windowBusinessService;
@Autowired
@Lazy
private WindowMatterService windowMatterService;
@Autowired
@Lazy
private WindowHallService windowHallService;
@Autowired
@Lazy
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