java框架树结构实现(带层级、编码、排序)

1、需求

实现一个影像资料库的功能,用树结构对资料进行分类

2、数据结构

通过id、pid表示父子关系

通过code表示层级关系

通过layer表示层级

通过sort进行排序

3、实体类

package org.jeecg.modules.image.entity;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import org.jeecg.common.system.base.entity.BaseSearchDTO;
import org.jeecg.common.system.base.support.Condition;
import org.jeecg.common.system.base.support.Match;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.springframework.data.annotation.Transient;
import org.springframework.format.annotation.DateTimeFormat;

import java.util.ArrayList;
import java.util.Date;
import java.util.List;

/**
 * @Description: 影像资料分类
 * @Author: jeecg-boot
 * @Date: 2024-05-28
 * @Version: V1.0
 */
@Data
@TableName("img_classification")
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = false)
@ApiModel(value = "img_classification对象", description = "影像资料分类")
public class ImgClassification extends BaseSearchDTO {

    /**
     * 主键
     */
    @TableId(type = IdType.ASSIGN_ID)
    @ApiModelProperty(value = "主键")
    private String id;
    /**
     * 创建人
     */
    @ApiModelProperty(value = "创建人")
    private String createBy;
    /**
     * 创建日期
     */
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "创建日期")
    private Date createTime;
    /**
     * 更新人
     */
    @ApiModelProperty(value = "更新人")
    private String updateBy;
    /**
     * 更新日期
     */
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ApiModelProperty(value = "更新日期")
    private Date updateTime;
    /**
     * 所属部门
     */
    @ApiModelProperty(value = "所属部门")
    private String sysOrgCode;
    /**
     * 父id
     */
    @Excel(name = "父id", width = 15)
    @ApiModelProperty(value = "父id")
    private String pid;
    /**
     * 分类编码
     */
    @Excel(name = "分类编码", width = 15)
    @ApiModelProperty(value = "分类编码")
    @Condition(match = Match.LLIKE)
    private String code;
    /**
     * 分类名称
     */
    @Excel(name = "分类名称", width = 15)
    @ApiModelProperty(value = "分类名称")
    @Condition(match = Match.LIKE)
    private String name;
    /**
     * 层级
     */
    @Excel(name = "层级", width = 15)
    @ApiModelProperty(value = "层级")
    private Integer layer;
    /**
     * 排序
     */
    @Excel(name = "排序", width = 15)
    @ApiModelProperty(value = "排序")
    private Integer sort;
    /**
     * 是否有子节点
     */
    @Excel(name = "是否有子节点", width = 15)
    @ApiModelProperty(value = "是否有子节点")
    private Boolean hasChildren;

    不在库里

    /**
     * 父级名称
     */
    @TableField(exist = false)
    @ApiModelProperty(value = "父级名称")
    private String parentName;

    /**
     * 子集
     */
    @Transient
    @TableField(exist = false)
    @ApiModelProperty(value = "子集")
    private List<ImgClassification> children = new ArrayList<>();


}

4、控制器

package org.jeecg.modules.image.controller;

import com.baomidou.mybatisplus.core.metadata.IPage;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import lombok.extern.slf4j.Slf4j;
import org.jeecg.common.api.vo.Result;
import org.jeecg.common.aspect.annotation.AutoLog;
import org.jeecg.common.system.base.controller.JeecgController;
import org.jeecg.common.system.base.service.BaseService;
import org.jeecg.modules.image.entity.ImgClassification;
import org.jeecg.modules.image.service.IImgClassificationService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.servlet.ModelAndView;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.List;

/**
 * @Description: 影像资料分类
 * @Author: jeecg-boot
 * @Date: 2024-05-28
 * @Version: V1.0
 */
@Api(tags = "1.0.1.0 影像资料分类")
@RestController
@RequestMapping("/image/imgClassification")
@Slf4j
public class ImgClassificationController extends JeecgController<ImgClassification, IImgClassificationService> {
    @Autowired
    private IImgClassificationService imgClassificationService;
    @Autowired
    private BaseService<ImgClassification> baseService;

//    /**
//     * 分页列表查询
//     *
//     * @param imgClassification
//     * @param pageNo
//     * @param pageSize
//     * @param req
//     * @return
//     */
//    //@AutoLog(value = "影像资料分类-分页列表查询")
//    @ApiOperation(value = "影像资料分类-分页列表查询", notes = "影像资料分类-分页列表查询")
//    @GetMapping(value = "/list")
//    public Result<IPage<ImgClassification>> queryPageList(ImgClassification imgClassification,
//                                                          @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
//                                                          @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize,
//                                                          HttpServletRequest req) {
//        QueryWrapper<ImgClassification> queryWrapper = QueryGenerator.initQueryWrapper(imgClassification, req.getParameterMap());
//        Page<ImgClassification> page = new Page<ImgClassification>(pageNo, pageSize);
//        IPage<ImgClassification> pageList = imgClassificationService.page(page, queryWrapper);
//        return Result.OK(pageList);
//    }

    /**
     * 分页列表查询
     *
     * @param imgClassification
     * @return
     */
    //@AutoLog(value = "影像资料分类-分页列表查询")
    @ApiOperation(value = "影像资料分类-分页列表查询", notes = "影像资料分类-分页列表查询")
    @GetMapping(value = "/list")
    public Result<IPage<ImgClassification>> queryPageList(ImgClassification imgClassification) {
        IPage<ImgClassification> pageList = baseService.selectPageByDTO(imgClassification);
        return Result.OK(pageList);
    }

    /**
     * 列表查询
     *
     * @param imgClassification
     * @return
     */
    @ApiOperation(value = "影像资料分类-列表查询", notes = "影像资料分类-列表查询")
    @GetMapping(value = "/listAll")
    public Result<List<ImgClassification>> listAll(ImgClassification imgClassification) {
        List<ImgClassification> list = baseService.selectlistByDto(imgClassification);
        return Result.OK(list);
    }

    /**
     * 添加
     *
     * @param imgClassification
     * @return
     */
    @AutoLog(value = "影像资料分类-添加")
    @ApiOperation(value = "影像资料分类-添加", notes = "影像资料分类-添加")
    //@RequiresPermissions("image:img_classification:add")
    @PostMapping(value = "/add")
    public Result<String> add(@RequestBody ImgClassification imgClassification) {
//        imgClassificationService.save(imgClassification);
        imgClassificationService.add(imgClassification);
        return Result.OK("添加成功!");
    }

    /**
     * 批量添加
     *
     * @param imgClassifications
     * @return
     */
    @AutoLog(value = "影像资料分类-批量添加")
    @ApiOperation(value = "影像资料分类-批量添加", notes = "影像资料分类-批量添加")
    @PostMapping(value = "/addBatch")
    public Result<String> addBatch(@RequestBody List<ImgClassification> imgClassifications) {
//        imgClassificationService.save(imgClassification);
        imgClassificationService.addBatch(imgClassifications);
        return Result.OK("添加成功!");
    }

    /**
     * 编辑
     *
     * @param imgClassification
     * @return
     */
    @AutoLog(value = "影像资料分类-编辑")
    @ApiOperation(value = "影像资料分类-编辑", notes = "影像资料分类-编辑")
    //@RequiresPermissions("image:img_classification:edit")
    @RequestMapping(value = "/edit", method = {RequestMethod.PUT, RequestMethod.POST})
    public Result<String> edit(@RequestBody ImgClassification imgClassification) {
        imgClassificationService.updateById(imgClassification);
        return Result.OK("编辑成功!");
    }

    /**
     * 通过id删除
     *
     * @param id
     * @return
     */
    @AutoLog(value = "影像资料分类-通过id删除")
    @ApiOperation(value = "影像资料分类-通过id删除", notes = "影像资料分类-通过id删除")
    //@RequiresPermissions("image:img_classification:delete")
    @DeleteMapping(value = "/delete")
    public Result<String> delete(@RequestParam(name = "id", required = true) String id) {
//        imgClassificationService.removeById(id);
        imgClassificationService.delete(id);
        return Result.OK("删除成功!");
    }

    /**
     * 批量删除
     *
     * @param ids
     * @return
     */
    @AutoLog(value = "影像资料分类-批量删除")
    @ApiOperation(value = "影像资料分类-批量删除", notes = "影像资料分类-批量删除")
    //@RequiresPermissions("image:img_classification:deleteBatch")
    @DeleteMapping(value = "/deleteBatch")
    public Result<String> deleteBatch(@RequestParam(name = "ids", required = true) String ids) {
//        this.imgClassificationService.removeByIds(Arrays.asList(ids.split(",")));
        imgClassificationService.deleteBatch(ids);
        return Result.OK("批量删除成功!");
    }

    /**
     * 通过id查询
     *
     * @param id
     * @return
     */
    //@AutoLog(value = "影像资料分类-通过id查询")
    @ApiOperation(value = "影像资料分类-通过id查询", notes = "影像资料分类-通过id查询")
    @GetMapping(value = "/queryById")
    public Result<ImgClassification> queryById(@RequestParam(name = "id", required = true) String id) {
//        ImgClassification imgClassification = imgClassificationService.getById(id);
        ImgClassification imgClassification = imgClassificationService.queryById(id);
        if (imgClassification == null) {
            return Result.error("未找到对应数据");
        }
        return Result.OK(imgClassification);
    }

    /**
     * 导出excel
     *
     * @param request
     * @param imgClassification
     */
    //@RequiresPermissions("image:img_classification:exportXls")
    @RequestMapping(value = "/exportXls")
    public ModelAndView exportXls(HttpServletRequest request, ImgClassification imgClassification) {
        return super.exportXls(request, imgClassification, ImgClassification.class, "影像资料分类");
    }

    /**
     * 通过excel导入数据
     *
     * @param request
     * @param response
     * @return
     */
    //@RequiresPermissions("image:img_classification:importExcel")
    @RequestMapping(value = "/importExcel", method = RequestMethod.POST)
    public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
        return super.importExcel(request, response, ImgClassification.class);
    }


    /**
     * 获取树结构
     *
     * @param dto
     * @return
     */
    @PostMapping("/getTree")
    @ApiOperation(value = "获取树结构")
    public Result<?> getTree(@ApiParam(value = "查询条件")
                             @RequestBody ImgClassification dto) {
        List<ImgClassification> tree = imgClassificationService.getTree(dto);
        return Result.OK(tree);
    }

    /**
     * 设置innercode码
     */
    @ApiOperation(value = "设置innercode码", notes = "设置innercode码")
    @GetMapping(value = "/initCode")
    public Result<?> initCode() {
        imgClassificationService.initCode();
        return Result.OK("处理完成");
    }

}

5、service层

package org.jeecg.modules.image.service;

import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.image.entity.ImgClassification;

import java.util.List;

/**
 * @Description: 影像资料分类
 * @Author: jeecg-boot
 * @Date: 2024-05-28
 * @Version: V1.0
 */
public interface IImgClassificationService extends IService<ImgClassification> {

    List<ImgClassification> selectTree(ImgClassification dto);

    List<ImgClassification> getTree(ImgClassification dto);

    void initCode();

    void add(ImgClassification imgClassification);

    void delete(String id);

    void addBatch(List<ImgClassification> imgClassifications);

    void deleteBatch(String ids);

    ImgClassification queryById(String id);
}

package org.jeecg.modules.image.service.impl;

import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.jeecg.common.exception.BusinessException;
import org.jeecg.common.system.base.service.BaseService;
import org.jeecg.common.util.StringUtil;
import org.jeecg.modules.image.entity.ImgClassification;
import org.jeecg.modules.image.entity.ImgLibrary;
import org.jeecg.modules.image.mapper.ImgClassificationMapper;
import org.jeecg.modules.image.service.IImgClassificationService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import javax.annotation.Resource;
import java.util.*;
import java.util.stream.Collectors;

/**
 * @Description: 影像资料分类
 * @Author: jeecg-boot
 * @Date: 2024-05-28
 * @Version: V1.0
 */
@Service
public class ImgClassificationServiceImpl extends ServiceImpl<ImgClassificationMapper, ImgClassification> implements IImgClassificationService {

    @Resource
    ImgClassificationMapper mapper;
    @Autowired
    private BaseService<ImgClassification> baseService;
    @Autowired
    private BaseService<ImgLibrary> imgLibraryService;


    @Override
    public List<ImgClassification> selectTree(ImgClassification dto) {
        return mapper.selectTree(dto);
    }

    @Override
    public List<ImgClassification> getTree(ImgClassification dto) {
        List<ImgClassification> returndemo = this.selectTree(dto);
        List<ImgClassification> tree = Collections.synchronizedList(new ArrayList<>());
        String id = "1";
        if (StringUtil.isNotEmpty(dto.getId())) {
            id = dto.getId();
        }

        if (StringUtil.isNotEmpty(returndemo)) {
            String finalId = id;
            returndemo.parallelStream().forEach(x -> {
                if (finalId.equals(x.getId())) {
                    //现在做全局递归,之后更改
                    tree.add(findChildren(x, returndemo));
                }
            });
        }

        //根据日期进行升序排序
        for (ImgClassification e : tree) {
            e.setChildren(sort(e.getChildren()));
        }
        List<ImgClassification> treeAsce = sort(tree);
        return treeAsce;
    }


    private List<ImgClassification> sort(List<ImgClassification> source) {
        List<ImgClassification> treeAsce
                = source.stream().sorted(Comparator.comparing(ImgClassification::getSort))
                .collect(Collectors.toList());

        for (ImgClassification e : source) {
            if (e.getChildren().size() > 0) {
                e.setChildren(sort(e.getChildren()));
            }
        }
        return treeAsce;
    }

    /**
     * @param node  .
     * @param lists .
     * @return .
     */
    private static ImgClassification findChildren(ImgClassification node, List<ImgClassification> lists) {
        lists.parallelStream().forEach(y -> {
            if (node.getId().equals(y.getPid())) {
                if (node.getChildren() == null) {
                    node.setChildren(new ArrayList<ImgClassification>());
                }
                node.getChildren().add(findChildren(y, lists));
            }
        });
        return node;
    }

    @Override
    public void initCode() {
        ImgClassification dto = new ImgClassification();
        List<ImgClassification> treeList = getTree(dto);

        dealInnerCode(treeList, true);
    }

    @Override
    public void addBatch(List<ImgClassification> imgClassifications) {
        for (ImgClassification imgClassification : imgClassifications) {
            this.add(imgClassification);
        }
    }

    @Override
    public void add(ImgClassification imgClassification) {

        //更新父节点的hasChildren
        ImgClassification parent = this.queryById(imgClassification.getPid());
        if (StringUtil.isEmpty(parent)) {
            throw new BusinessException("未找到父节点");
        }
        parent.setHasChildren(true);
        this.updateById(parent);

        //更新本节点的层级、编码、排序
        imgClassification = this.reDoEntity(parent, imgClassification);
        //新增
        this.save(imgClassification);
    }

    /**
     * 获取分类的 层级layer、 编码code、 排序sort
     */
    private ImgClassification reDoEntity(ImgClassification parent, ImgClassification imgClassification) {
        String code = null;

        //当前父节点有几个子节点
        List<ImgClassification> childrenList = parent.getChildren();
        int lastNumber = 1;
        if (StringUtil.isEmpty(childrenList)) {
            // 列表为空或null,处理这种情况
            code = parent.getCode() + "-1";
        } else {
            //查询父节点下最新的一条记录
            ImgClassification latestItem = childrenList.get(0); // 假设第一个元素是最新的
            String latestCode = latestItem.getCode();
            // 按 "-" 分割字符串
            String[] parts = latestCode.split("-");

            // 检查是否至少有一个部分
            if (parts.length == 0) {
                System.out.println("没有分隔符,找不到数值");
            }
            // 找到最后一个编号,并转换为整数
            lastNumber = Integer.parseInt(parts[parts.length - 1]);

            // 将最后一个编号加1
            lastNumber++;

            // 将加1后的整数转换回字符串
            String lastNumberStr = String.valueOf(lastNumber);

            // 替换原来的最后一个编号,并用 "-" 重新连接所有编号
            // 如果只有一个部分,则不需要"-"
            StringBuilder newS = new StringBuilder();
            for (int i = 0; i < parts.length - 1; i++) {
                newS.append(parts[i]).append("-");
            }
            newS.append(lastNumberStr);
            code = newS.toString();
        }
        imgClassification.setCode(code);
        imgClassification.setLayer(parent.getLayer() + 1);
        if (StringUtil.isEmpty(imgClassification.getSort())) {
            imgClassification.setSort(lastNumber + 1);
        }
        //更新本节点的hasChildren
        imgClassification.setHasChildren(false);
        return imgClassification;
    }

    @Override
    public void deleteBatch(String ids) {
        List<String> idList = Arrays.asList(ids.split(","));
        if (StringUtil.isNotEmpty(idList)) {
            for (String id : idList) {
                this.delete(id);
            }
        }
    }

    @Override
    public ImgClassification queryById(String id) {
        ImgClassification imgClassification = this.getById(id);
        //获取子节点
        ImgClassification dto = new ImgClassification();
        dto.setPid(id);
        dto.setOrderby("create_time desc");
        List<ImgClassification> childrenList = baseService.selectlistByDto(dto);
        imgClassification.setChildren(childrenList);
        return imgClassification;
    }


    /**
     * 删除分类
     * 1.根节点不允许删除
     * 2.节点下挂了资料,不能删除
     * 3.更新父节点的hasChildren
     * 4.删除本节点
     *
     * @param id
     */
    @Override
    public void delete(String id) {

        ImgClassification imgClassification = this.getById(id);

        //根节点不允许删除
        if (id.equals("1")) {
            throw new BusinessException("根节点不允许删除。");
        }

        //判断分类下是否有资料,如果有,则不能删除
        if (hasData(imgClassification)) {
            throw new BusinessException(imgClassification.getName() + "分类下存在资料,不能删除。" + imgClassification.getCode() + ":" + imgClassification.getId());
        }

        //更新父节点的hasChildren
        if (imgClassification != null) {     //如果删除的是顶级节点,则父节点的hasChildren置为false
            ImgClassification parent = this.queryById(imgClassification.getPid());
            if (parent != null) {
                List<ImgClassification> childrenList = parent.getChildren();
                if (StringUtil.isNotEmpty(childrenList) && childrenList.size() == 1) {
                    parent.setHasChildren(false);
                    this.updateById(parent);
                }
            }
        }

        //删除本节点
        this.removeById(id);

    }

    private Boolean hasData(ImgClassification imgClassification) {
        ImgLibrary dto = new ImgLibrary();
        dto.setClsCode(imgClassification.getCode());
        List<ImgLibrary> imgLibraryList = imgLibraryService.selectlistByDto(dto);
        if (imgLibraryList != null && !imgLibraryList.isEmpty()) {
            return true;
        }
        return false;
    }

    public void dealInnerCode(List<ImgClassification> treeList, Boolean isTop) {

        for (int i = 0; i < treeList.size(); i++) {
            String thisId = treeList.get(i).getId();
            String pId = treeList.get(i).getPid();
            ImgClassification imgClassification = this.getById(thisId);
            if (isTop) {
                imgClassification.setCode("0");
            } else {
                imgClassification.setCode(getCodeById(pId) + (i + 1));
            }
            //更新
            this.updateById(imgClassification);
            List<ImgClassification> childrenList = treeList.get(i).getChildren();
            if (StringUtil.isNotEmpty(childrenList)) {
                dealInnerCode(childrenList, false);
            }
        }

    }

    public String getCodeById(String id) {
        ImgClassification imgClassification = this.getById(id);
        return imgClassification.getCode();
    }
}

6、dao层

package org.jeecg.modules.image.mapper;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
import org.jeecg.modules.image.entity.ImgClassification;

import java.util.List;

/**
 * @Description: 影像资料分类
 * @Author: jeecg-boot
 * @Date: 2024-05-28
 * @Version: V1.0
 */
public interface ImgClassificationMapper extends BaseMapper<ImgClassification> {
    List<ImgClassification> selectTree(@Param("dto") ImgClassification dto);
}

7、xml层

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="org.jeecg.modules.image.mapper.ImgClassificationMapper">

    <!-- 树结构-查父节点的名字 -->
    <select id="selectTree"
            parameterType="Object"
            resultType="org.jeecg.modules.image.entity.ImgClassification">
        SELECT t1.name AS parent_name,
        t.*
        FROM IMG_CLASSIFICATION t
        LEFT JOIN IMG_CLASSIFICATION t1 ON t.pid = t1.id
        WHERE 1 = 1
        <if test="dto.name !=null and dto.name != ''">
            AND t.name like concat(concat('%',#{dto.name}),'%')
        </if>
        ORDER BY
        t1.CREATE_TIME,t.CREATE_TIME
    </select>

</mapper>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/683947.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

交叉编译freetype

目录 一、前言 二、交叉编译 freetype 1.交叉编译安装工具链 zlib 2.交叉编译安装工具链 libpng 3.交叉编译安装工具链 freetype 4.编译测试发现错误并解决 5.上机测试 一、前言 交叉编译常见错误解决方法可看&#xff1a;交叉编译中常见错误解决方法_交叉编译后fail t…

DevExpress Installed

一、What’s Installed 统一安装程序将DevExpress控件和库注册到Visual Studio中&#xff0c;并安装DevExpress实用工具、演示应用程序和IDE插件。 Visual Studio工具箱中的DevExpress控件 Visual Studio中的DevExpress菜单 Demo Applications 演示应用程序 Launch the Demo…

基于细节增强卷积和内容引导注意的单图像去雾

提示&#xff1a;文章写完后&#xff0c;目录可以自动生成&#xff0c;如何生成可参考右边的帮助文档 文章目录 摘要Abstract文献阅读&#xff1a;DEA-Net&#xff1a;基于细节增强卷积和内容引导注意的单图像去雾1、研究背景2、方法提出3、相关知识3.1、DEConv3.3、多重卷积的…

Springboot+druid+多数据源

背景&#xff1a;早期项目是springboot2.x druid 的单数据源工程&#xff0c;其中使用了dblink的方式进行跨数据库访问。现在客户的机房搬迁&#xff0c;记账的下游数据库说是搬到不同区域&#xff0c;dblink的方式需要长期占用资源&#xff0c;需要修改成直连方式。 按照AI的…

AttenFace一个基于人脸识别的实时考勤验证系统算法研究

0 、引言 论文提出了一个使用面部识别、允许实时监控考勤的考勤系统&#xff0c; 可以检查由于欺骗和遗漏造成的欺诈。 论文地址&#xff1a;https://arxiv.org/abs/2211.07582v1 1. 概述 在大学和其他机构的课堂上&#xff0c;通常会进行考勤。然而&#xff0c;这种方式往往…

工业互联网基本概念及关键技术(295页PPT)

资料介绍&#xff1a; 工业互联网的核心是通过工业互联网平台把设备、生产线、工厂、供应商、产品和客户紧密地连接融合起来。这种连接能够形成跨设备、跨系统、跨厂区、跨地区的互联互通&#xff0c;从而提高效率&#xff0c;推动整个制造服务体系智能化。同时&#xff0c;工…

2024最新华为OD机试-C/D卷 - 在线OJ使用说明

文章目录 &#x1fa90;在线 OJ 入口&#x1f3a7;申请OD使用权限&#x1f353;在线 OJ 的使用说明OJ主界面专题系列语言支持评测结果 &#x1fa90;在线 OJ 入口 &#x1f517; 2024最新华为OD机试 - 在线OJ入 &#x1f3a7;申请OD使用权限 本专栏配套 OJ 的为了配合考友更高…

git: 批量删除分支

环境&#xff1a; window11git version 2.42.0git-bash.exe window环境下&#xff1a; 1. 批量删除本地 git branch |grep xxx |xargs git branch -D比如&#xff1a; 想批量删除本地含有 release 关键字的分支&#xff1a; 2. 批量删除远程 git branch -r | grep xxxx | …

Qt for Android 申请摄像头权限

步骤 1. 添加用户权限 AndroidManifest.xml 中新增&#xff08;不添加后面申请选项时不弹窗&#xff09; 或者再Qt Creator中直接添加 2. Qt代码申请权限 Qt自己封装好了一些常用的权限申请&#xff0c; 详情Qt Assistant文档搜索 QPermission查看 #include <QPermi…

kafka-消费者组(SpringBoot整合Kafka)

文章目录 1、消费者组1.1、使用 efak 创建 主题 my_topic1 并建立6个分区并给每个分区建立3个副本1.2、创建生产者发送消息1.3、application.yml配置1.4、创建消费者监听器1.5、创建SpringBoot启动类1.6、屏蔽 kafka debug 日志 logback.xml1.7、引入spring-kafka依赖1.8、消费…

如何理解与学习数学分析——第二部分——数学分析中的基本概念——第7章——连续性

第2 部分&#xff1a;数学分析中的基本概念 (Concepts in Analysis) 7. 连续性(Continuity) 本章首先讨论连续性的直观概念&#xff0c;并介绍与早期数学中常见的函数不同的函数。解释了连续性的定义&#xff0c;并演示了如何使用它来证明函数在一点上连续&#xff0c;以及证…

K210视觉识别模块学习笔记5:(嘉楠)训练使用模型_识别人脸

今日开始学习K210视觉识别模块:(嘉楠)训练与使用模型_识别人脸 亚博智能的K210视觉识别模块...... 固件库版本: canmv_yahboom_v2.1.1.bin 之前的训练网址部署模型时需要我们自己更换固件&#xff0c;而且还不能用亚博的图像操作库函数了&#xff0c;这十分不友好&#xff0…

【Python系列】Python 方法变量参数详解

&#x1f49d;&#x1f49d;&#x1f49d;欢迎来到我的博客&#xff0c;很高兴能够在这里和您见面&#xff01;希望您在这里可以感受到一份轻松愉快的氛围&#xff0c;不仅可以获得有趣的内容和知识&#xff0c;也可以畅所欲言、分享您的想法和见解。 推荐:kwan 的首页,持续学…

C++第二十四弹---从零开始模拟STL中的list(上)

✨个人主页&#xff1a; 熬夜学编程的小林 &#x1f497;系列专栏&#xff1a; 【C语言详解】 【数据结构详解】【C详解】 目录 1、基本结构 2、基本函数实现 2.1、默认构造函数 2.2、尾插数据 3、迭代器的封装 3.1、迭代器的基本结构 3.2、迭代器重载函数的实现 4、迭…

数字逻辑电路交通信号灯控制器设计与multisim仿真

当今时代是一个自动化时代,交通灯控制等很多行业的设备都与计算机密切相关。因此,一个好的交通灯控制系统,将给道路拥挤、违章控制等方面给技术革新。随着大规模的集成电路及计算机技术的迅速发展,以及人工智能在控制技术方面的广泛运用,智能设备有了很大的发展,是现在科…

基于ssm的乡村振兴战略下海东地区农产品购销系统

一、系统架构 前端&#xff1a;vue | element-ui 后端&#xff1a;spring | springmvc | mybatis 环境&#xff1a;jdk1.8 | mysql | maven | nodejs 二、代码及数据库 三、功能介绍 01. web端-首页1 02. web端-首页2 03. web端-登录 04. web端…

【数学建模】MATLAB入门教程:插值与拟合(下)

前言 插值与拟合在数据处理和科学计算中扮演着非常重要的角色&#xff0c;它们用于估算未知数据点的值&#xff0c;帮助我们理解和预测数据趋势 一、一维插值 1、一维插值定义 已知n1个节点(,)(j0,1,...,n,其中互不相同&#xff0c;不妨设a<<...<b),求任一插值点(…

网络安全领域六大顶级会议介绍:含会议介绍、会议地址及会议时间和截稿日期

**引言&#xff1a;**从事网络安全工作&#xff0c;以下六个顶会必须要知道&#xff0c;很多安全的前沿技术都会在如下会议中产生与公开&#xff0c;如下会议发表论文大部分可以公开下载。这些会议不仅是学术研究人员展示最新研究成果的平台&#xff0c;也是行业专家进行面对面…

chlarles抓包工具之---打断点

打断点的目的 通过打断点可以修改请求的数据或者响应&#xff0c;来测试各种场景 打断点流程 1、选中需要打断点的接口右键&#xff0c;选中Breakpoints 2、Proxy --> Breakpoint Setting 如果打断点一直进不去&#xff0c;把设置的query项清空

音频数据上的会话情感分析

情感分析&#xff0c;也被称为观点挖掘&#xff0c;是自然语言处理(NLP)中一个流行的任务,因为它有着广泛的工业应用。在专门将自然语言处理技术应用于文本数据的背景下,主要目标是训练出一个能够将给定文本分类到不同情感类别的模型。下图给出了情感分类器的高级概述。 例如,三…