Merge branch 'master' of http://47.109.37.87:3000/by2025/SmartParks
This commit is contained in:
commit
5ed4796d3c
@ -13,6 +13,7 @@
|
||||
<module>ruoyi-api-system</module>
|
||||
<module>ruoyi-api-resource</module>
|
||||
<module>ruoyi-api-workflow</module>
|
||||
<module>property-api</module>
|
||||
</modules>
|
||||
|
||||
<artifactId>ruoyi-api</artifactId>
|
||||
|
@ -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;
|
||||
|
||||
}
|
||||
|
@ -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;
|
||||
|
||||
/**
|
||||
|
@ -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());
|
||||
|
Loading…
Reference in New Issue
Block a user