基于中科视拓的seetaface6封装的免费人脸识别项目后端接口
shentao
2025-09-22 4e24fd913e7b048436aa7e5001cf875baac81ff5
1
2
3
4
5
6
7
8
9
10
package com.code2roc.fastface.service.impl;
 
import com.code2roc.fastface.db.BaseServiceImpl;
import com.code2roc.fastface.model.FaceRegistDO;
import com.code2roc.fastface.service.IFaceRegistService;
import org.springframework.stereotype.Service;
 
@Service
public class FaceRegistServceImpl extends BaseServiceImpl<FaceRegistDO> implements IFaceRegistService {
}