Compare commits

...

2 Commits

Author SHA1 Message Date
15683799673
d2638de4e4 Merge branch 'master' of http://47.109.37.87:3000/by2025/SmartParks
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
2025-07-01 08:46:07 +08:00
15683799673
b70c3f2ee1 增加门禁查询树接口 2025-07-01 08:45:45 +08:00
3 changed files with 9 additions and 2 deletions

View File

@ -39,4 +39,10 @@ public class SisAuthRecordBo extends BaseEntity {
*/
@NotNull(message = "门禁id列表能为空", groups = {AddGroup.class, EditGroup.class})
private List<Long> acIds;
/**
* 是否将图片下发到宇视盒子
*/
private Boolean issue = false;
}

View File

@ -4,6 +4,7 @@ import cn.idev.excel.annotation.ExcelIgnoreUnannotated;
import cn.idev.excel.annotation.ExcelProperty;
import io.github.linpeilie.annotations.AutoMapper;
import lombok.Data;
import org.dromara.common.translation.annotation.Translation;
import org.dromara.sis.domain.SisPersonLibImg;
import java.io.Serial;
@ -53,7 +54,7 @@ public class SisPersonLibImgVo implements Serializable {
* 性别 1
2 99未说明
*/
@ExcelProperty(value = "性别 1")
@ExcelProperty(value = "性别")
private Integer sex;
/**

View File

@ -239,7 +239,7 @@ public class SisAccessControlServiceImpl implements ISisAccessControlService {
if (sisAccessControlVos != null && !sisAccessControlVos.isEmpty()) {
List<TreeNode<Long>> l1 = sisAccessControlVos.stream().map(item -> {
TreeNode<Long> node = new TreeNode<>();
node.setLevel(4);
node.setLevel(5);
node.setCode(item.getId());
node.setParentCode(item.getFloorId());
node.setLabel(item.getAccessName());