refactor(sis): 定时任务逻辑

This commit is contained in:
2025-07-26 17:53:57 +08:00
parent d070a52487
commit 127336af6d
18 changed files with 293 additions and 125 deletions

View File

@@ -13,4 +13,7 @@ public interface RemoteResidentPersonService {
// 查询已上传图片,未授权人员
List<RemoteResidentPersonVo> queryUnAuthPerson();
// 更新E8平台id
Boolean updateE8Id(Long personId, Long e8Id);
}

View File

@@ -4,6 +4,7 @@ import lombok.Data;
import java.io.Serial;
import java.io.Serializable;
import java.util.Date;
/**
* @author lsm
@@ -20,7 +21,15 @@ public class RemoteResidentPersonVo implements Serializable {
private String ossId;
private Long eEightId;
private String name;
private Long gender;
private String idCard;
private Long authGroupId;
private Date authBegDate;
private Date authEndDate;
}