feat(auth): 人员授权相关功能修改
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package org.dromara.property.api;
|
||||
|
||||
import org.dromara.property.api.domain.vo.RemoteResidentPersonVo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author lsm
|
||||
* @apiNote RemoteResidentPersonService
|
||||
* @since 2025/7/26
|
||||
*/
|
||||
public interface RemoteResidentPersonService {
|
||||
|
||||
// 查询已上传图片,未授权人员
|
||||
List<RemoteResidentPersonVo> queryUnAuthPerson();
|
||||
}
|
@@ -0,0 +1,26 @@
|
||||
package org.dromara.property.api.domain.vo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serial;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author lsm
|
||||
* @apiNote RemoteResidentPersonVo
|
||||
* @since 2025/7/26
|
||||
*/
|
||||
@Data
|
||||
public class RemoteResidentPersonVo implements Serializable {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private Long id;
|
||||
|
||||
private String ossId;
|
||||
|
||||
private Long eEightId;
|
||||
|
||||
private Long authGroupId;
|
||||
}
|
@@ -9,5 +9,5 @@ import org.dromara.sis.api.domain.RemotePersonAuth;
|
||||
*/
|
||||
public interface RemoteSisAuth {
|
||||
|
||||
Long personAuth(RemotePersonAuth personAuth);
|
||||
Boolean personAuth(RemotePersonAuth personAuth);
|
||||
}
|
||||
|
@@ -37,8 +37,8 @@ public class RemotePersonAuth implements Serializable {
|
||||
|
||||
private Long authGroupId;
|
||||
|
||||
private Date begDate;
|
||||
private Date authBegDate;
|
||||
|
||||
private Date endDate;
|
||||
private Date authEndDate;
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user