mybaties查询!!!你就说灵不灵活吧

你就说灵不灵活吧

<?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="com.ruoyi.system.mapper.SysDeptMapper"><resultMap type="SysDept" id="SysDeptResult"><id     property="deptId"     column="dept_id"     /><result property="parentId"   column="parent_id"   /><result property="ancestors"  column="ancestors"   /><result property="deptName"   column="dept_name"   /><result property="orderNum"   column="order_num"   /><result property="leader"     column="leader"      /><result property="phone"      column="phone"       /><result property="email"      column="email"       /><result property="status"     column="status"      /><result property="delFlag"    column="del_flag"    /><result property="parentName" column="parent_name" /><result property="createBy"   column="create_by"   /><result property="createTime" column="create_time" /><result property="updateBy"   column="update_by"   /><result property="updateTime" column="update_time" /></resultMap><sql id="selectDeptVo">select d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.phone, d.email, d.status, d.del_flag, d.create_by, d.create_timefrom sys_dept d</sql><select id="selectDeptList" parameterType="SysDept" resultMap="SysDeptResult"><include refid="selectDeptVo"/>where d.del_flag = '0'<if test="deptId != null and deptId != 0">AND dept_id = #{deptId}</if><if test="parentId != null and parentId != 0">AND parent_id = #{parentId}</if><if test="deptName != null and deptName != ''">AND dept_name like concat('%', #{deptName}, '%')</if><if test="status != null and status != ''">AND status = #{status}</if><!-- 数据范围过滤 -->${params.dataScope}order by d.parent_id, d.order_num</select><select id="selectDeptListByRoleId" resultType="Long">select d.dept_idfrom sys_dept dleft join sys_role_dept rd on d.dept_id = rd.dept_idwhere rd.role_id = #{roleId}<if test="deptCheckStrictly">and d.dept_id not in (select d.parent_id from sys_dept d inner join sys_role_dept rd on d.dept_id = rd.dept_id and rd.role_id = #{roleId})</if>order by d.parent_id, d.order_num</select><select id="selectDeptById" parameterType="Long" resultMap="SysDeptResult">select d.dept_id, d.parent_id, d.ancestors, d.dept_name, d.order_num, d.leader, d.phone, d.email, d.status,(select dept_name from sys_dept where dept_id = d.parent_id) parent_namefrom sys_dept dwhere d.dept_id = #{deptId}</select><select id="checkDeptExistUser" parameterType="Long" resultType="int">select count(1) from sys_user where dept_id = #{deptId} and del_flag = '0'</select><select id="hasChildByDeptId" parameterType="Long" resultType="int">select count(1) from sys_deptwhere del_flag = '0' and parent_id = #{deptId} limit 1</select><select id="selectChildrenDeptById" parameterType="Long" resultMap="SysDeptResult">select * from sys_dept where find_in_set(#{deptId}, ancestors)</select><select id="selectNormalChildrenDeptById" parameterType="Long" resultType="int">select count(*) from sys_dept where status = 0 and del_flag = '0' and find_in_set(#{deptId}, ancestors)</select><select id="checkDeptNameUnique" resultMap="SysDeptResult"><include refid="selectDeptVo"/>where dept_name=#{deptName} and parent_id = #{parentId} and del_flag = '0' limit 1</select><insert id="insertDept" parameterType="SysDept">insert into sys_dept(<if test="deptId != null and deptId != 0">dept_id,</if><if test="parentId != null and parentId != 0">parent_id,</if><if test="deptName != null and deptName != ''">dept_name,</if><if test="ancestors != null and ancestors != ''">ancestors,</if><if test="orderNum != null">order_num,</if><if test="leader != null and leader != ''">leader,</if><if test="phone != null and phone != ''">phone,</if><if test="email != null and email != ''">email,</if><if test="status != null">status,</if><if test="createBy != null and createBy != ''">create_by,</if>create_time)values(<if test="deptId != null and deptId != 0">#{deptId},</if><if test="parentId != null and parentId != 0">#{parentId},</if><if test="deptName != null and deptName != ''">#{deptName},</if><if test="ancestors != null and ancestors != ''">#{ancestors},</if><if test="orderNum != null">#{orderNum},</if><if test="leader != null and leader != ''">#{leader},</if><if test="phone != null and phone != ''">#{phone},</if><if test="email != null and email != ''">#{email},</if><if test="status != null">#{status},</if><if test="createBy != null and createBy != ''">#{createBy},</if>sysdate())</insert><update id="updateDept" parameterType="SysDept">update sys_dept<set><if test="parentId != null and parentId != 0">parent_id = #{parentId},</if><if test="deptName != null and deptName != ''">dept_name = #{deptName},</if><if test="ancestors != null and ancestors != ''">ancestors = #{ancestors},</if><if test="orderNum != null">order_num = #{orderNum},</if><if test="leader != null">leader = #{leader},</if><if test="phone != null">phone = #{phone},</if><if test="email != null">email = #{email},</if><if test="status != null and status != ''">status = #{status},</if><if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>update_time = sysdate()</set>where dept_id = #{deptId}</update><update id="updateDeptChildren" parameterType="java.util.List">update sys_dept set ancestors =<foreach collection="depts" item="item" index="index"separator=" " open="case dept_id" close="end">when #{item.deptId} then #{item.ancestors}</foreach>where dept_id in<foreach collection="depts" item="item" index="index"separator="," open="(" close=")">#{item.deptId}</foreach></update><update id="updateDeptStatusNormal" parameterType="Long">update sys_dept set status = '0' where dept_id in<foreach collection="array" item="deptId" open="(" separator="," close=")">#{deptId}</foreach></update><delete id="deleteDeptById" parameterType="Long">update sys_dept set del_flag = '2' where dept_id = #{deptId}</delete></mapper>

多表联查

<?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="com.ruoyi.system.mapper.SysRoleMapper"><resultMap type="SysRole" id="SysRoleResult"><id     property="roleId"             column="role_id"               /><result property="roleName"           column="role_name"             /><result property="roleKey"            column="role_key"              /><result property="roleSort"           column="role_sort"             /><result property="dataScope"          column="data_scope"            /><result property="menuCheckStrictly"  column="menu_check_strictly"   /><result property="deptCheckStrictly"  column="dept_check_strictly"   /><result property="status"             column="status"                /><result property="delFlag"            column="del_flag"              /><result property="createBy"           column="create_by"             /><result property="createTime"         column="create_time"           /><result property="updateBy"           column="update_by"             /><result property="updateTime"         column="update_time"           /><result property="remark"             column="remark"                /></resultMap>// 多表查询<sql id="selectRoleVo">select distinct r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.menu_check_strictly, r.dept_check_strictly,r.status, r.del_flag, r.create_time, r.remark from sys_role rleft join sys_user_role ur on ur.role_id = r.role_idleft join sys_user u on u.user_id = ur.user_idleft join sys_dept d on u.dept_id = d.dept_id</sql><select id="selectRoleList" parameterType="SysRole" resultMap="SysRoleResult"><include refid="selectRoleVo"/>where r.del_flag = '0'<if test="roleId != null and roleId != 0">AND r.role_id = #{roleId}</if><if test="roleName != null and roleName != ''">AND r.role_name like concat('%', #{roleName}, '%')</if><if test="status != null and status != ''">AND r.status = #{status}</if><if test="roleKey != null and roleKey != ''">AND r.role_key like concat('%', #{roleKey}, '%')</if><if test="params.beginTime != null and params.beginTime != ''"><!-- 开始时间检索 -->and date_format(r.create_time,'%y%m%d') &gt;= date_format(#{params.beginTime},'%y%m%d')</if><if test="params.endTime != null and params.endTime != ''"><!-- 结束时间检索 -->and date_format(r.create_time,'%y%m%d') &lt;= date_format(#{params.endTime},'%y%m%d')</if><!-- 数据范围过滤 -->${params.dataScope}order by r.role_sort</select><select id="selectRolePermissionByUserId" parameterType="Long" resultMap="SysRoleResult"><include refid="selectRoleVo"/>WHERE r.del_flag = '0' and ur.user_id = #{userId}</select><select id="selectRoleAll" resultMap="SysRoleResult"><include refid="selectRoleVo"/></select><select id="selectRoleListByUserId" parameterType="Long" resultType="Long">select r.role_idfrom sys_role rleft join sys_user_role ur on ur.role_id = r.role_idleft join sys_user u on u.user_id = ur.user_idwhere u.user_id = #{userId}</select><select id="selectRoleById" parameterType="Long" resultMap="SysRoleResult"><include refid="selectRoleVo"/>where r.role_id = #{roleId}</select><select id="selectRolesByUserName" parameterType="String" resultMap="SysRoleResult"><include refid="selectRoleVo"/>WHERE r.del_flag = '0' and u.user_name = #{userName}</select><select id="checkRoleNameUnique" parameterType="String" resultMap="SysRoleResult"><include refid="selectRoleVo"/>where r.role_name=#{roleName} and r.del_flag = '0' limit 1</select><select id="checkRoleKeyUnique" parameterType="String" resultMap="SysRoleResult"><include refid="selectRoleVo"/>where r.role_key=#{roleKey} and r.del_flag = '0' limit 1</select><insert id="insertRole" parameterType="SysRole" useGeneratedKeys="true" keyProperty="roleId">insert into sys_role(<if test="roleId != null and roleId != 0">role_id,</if><if test="roleName != null and roleName != ''">role_name,</if><if test="roleKey != null and roleKey != ''">role_key,</if><if test="roleSort != null">role_sort,</if><if test="dataScope != null and dataScope != ''">data_scope,</if><if test="menuCheckStrictly != null">menu_check_strictly,</if><if test="deptCheckStrictly != null">dept_check_strictly,</if><if test="status != null and status != ''">status,</if><if test="remark != null and remark != ''">remark,</if><if test="createBy != null and createBy != ''">create_by,</if>create_time)values(<if test="roleId != null and roleId != 0">#{roleId},</if><if test="roleName != null and roleName != ''">#{roleName},</if><if test="roleKey != null and roleKey != ''">#{roleKey},</if><if test="roleSort != null">#{roleSort},</if><if test="dataScope != null and dataScope != ''">#{dataScope},</if><if test="menuCheckStrictly != null">#{menuCheckStrictly},</if><if test="deptCheckStrictly != null">#{deptCheckStrictly},</if><if test="status != null and status != ''">#{status},</if><if test="remark != null and remark != ''">#{remark},</if><if test="createBy != null and createBy != ''">#{createBy},</if>sysdate())</insert><update id="updateRole" parameterType="SysRole">update sys_role<set><if test="roleName != null and roleName != ''">role_name = #{roleName},</if><if test="roleKey != null and roleKey != ''">role_key = #{roleKey},</if><if test="roleSort != null">role_sort = #{roleSort},</if><if test="dataScope != null and dataScope != ''">data_scope = #{dataScope},</if><if test="menuCheckStrictly != null">menu_check_strictly = #{menuCheckStrictly},</if><if test="deptCheckStrictly != null">dept_check_strictly = #{deptCheckStrictly},</if><if test="status != null and status != ''">status = #{status},</if><if test="remark != null">remark = #{remark},</if><if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>update_time = sysdate()</set>where role_id = #{roleId}</update><delete id="deleteRoleById" parameterType="Long">update sys_role set del_flag = '2' where role_id = #{roleId}</delete><delete id="deleteRoleByIds" parameterType="Long">update sys_role set del_flag = '2' where role_id in<foreach collection="array" item="roleId" open="(" separator="," close=")">#{roleId}</foreach> </delete></mapper> 

 字典信息

<?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="com.ruoyi.system.mapper.SysDictDataMapper"><resultMap type="SysDictData" id="SysDictDataResult"><id     property="dictCode"   column="dict_code"   /><result property="dictSort"   column="dict_sort"   /><result property="dictLabel"  column="dict_label"  /><result property="dictValue"  column="dict_value"  /><result property="dictType"   column="dict_type"   /><result property="cssClass"   column="css_class"   /><result property="listClass"  column="list_class"  /><result property="isDefault"  column="is_default"  /><result property="status"     column="status"      /><result property="createBy"   column="create_by"   /><result property="createTime" column="create_time" /><result property="updateBy"   column="update_by"   /><result property="updateTime" column="update_time" /></resultMap><sql id="selectDictDataVo">select dict_code, dict_sort, dict_label, dict_value, dict_type, css_class, list_class, is_default, status, create_by, create_time, remark from sys_dict_data</sql><select id="selectDictDataList" parameterType="SysDictData" resultMap="SysDictDataResult"><include refid="selectDictDataVo"/><where><if test="dictType != null and dictType != ''">AND dict_type = #{dictType}</if><if test="dictLabel != null and dictLabel != ''">AND dict_label like concat('%', #{dictLabel}, '%')</if><if test="status != null and status != ''">AND status = #{status}</if></where>order by dict_sort asc</select><select id="selectDictDataByType" parameterType="SysDictData" resultMap="SysDictDataResult"><include refid="selectDictDataVo"/>where status = '0' and dict_type = #{dictType} order by dict_sort asc</select><select id="selectDictLabel" resultType="String">select dict_label from sys_dict_datawhere dict_type = #{dictType} and dict_value = #{dictValue}</select><select id="selectDictDataById" parameterType="Long" resultMap="SysDictDataResult"><include refid="selectDictDataVo"/>where dict_code = #{dictCode}</select><select id="countDictDataByType" resultType="Integer">select count(1) from sys_dict_data where dict_type=#{dictType}  </select><delete id="deleteDictDataById" parameterType="Long">delete from sys_dict_data where dict_code = #{dictCode}</delete><delete id="deleteDictDataByIds" parameterType="Long">delete from sys_dict_data where dict_code in<foreach collection="array" item="dictCode" open="(" separator="," close=")">#{dictCode}</foreach> </delete><update id="updateDictData" parameterType="SysDictData">update sys_dict_data<set><if test="dictSort != null">dict_sort = #{dictSort},</if><if test="dictLabel != null and dictLabel != ''">dict_label = #{dictLabel},</if><if test="dictValue != null and dictValue != ''">dict_value = #{dictValue},</if><if test="dictType != null and dictType != ''">dict_type = #{dictType},</if><if test="cssClass != null">css_class = #{cssClass},</if><if test="listClass != null">list_class = #{listClass},</if><if test="isDefault != null and isDefault != ''">is_default = #{isDefault},</if><if test="status != null">status = #{status},</if><if test="remark != null">remark = #{remark},</if><if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>update_time = sysdate()</set>where dict_code = #{dictCode}</update><update id="updateDictDataType" parameterType="String">update sys_dict_data set dict_type = #{newDictType} where dict_type = #{oldDictType}</update><insert id="insertDictData" parameterType="SysDictData">insert into sys_dict_data(<if test="dictSort != null">dict_sort,</if><if test="dictLabel != null and dictLabel != ''">dict_label,</if><if test="dictValue != null and dictValue != ''">dict_value,</if><if test="dictType != null and dictType != ''">dict_type,</if><if test="cssClass != null and cssClass != ''">css_class,</if><if test="listClass != null and listClass != ''">list_class,</if><if test="isDefault != null and isDefault != ''">is_default,</if><if test="status != null">status,</if><if test="remark != null and remark != ''">remark,</if><if test="createBy != null and createBy != ''">create_by,</if>create_time)values(<if test="dictSort != null">#{dictSort},</if><if test="dictLabel != null and dictLabel != ''">#{dictLabel},</if><if test="dictValue != null and dictValue != ''">#{dictValue},</if><if test="dictType != null and dictType != ''">#{dictType},</if><if test="cssClass != null and cssClass != ''">#{cssClass},</if><if test="listClass != null and listClass != ''">#{listClass},</if><if test="isDefault != null and isDefault != ''">#{isDefault},</if><if test="status != null">#{status},</if><if test="remark != null and remark != ''">#{remark},</if><if test="createBy != null and createBy != ''">#{createBy},</if>sysdate())</insert></mapper> 

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

如若内容造成侵权/违法违规/事实不符,请联系一条长河网进行投诉反馈,一经查实,立即删除!

相关文章

白鲸开源CEO郭炜在2024 DataOps发展大会上获聘专家

2024年5月15日&#xff0c;白鲸开源CEO郭炜在2024 DataOps发展大会上被正式聘任为DataOps专家&#xff0c;并获得了荣誉证书。本次大会由中国通信标准化协会主办&#xff0c;中关村科学城管委会提供支持&#xff0c;大数据技术标准推进委员会&#xff08;CCSATC601&#xff09;…

CSS之浮动

目录 浮动常见网页布局标准流&#xff08;普通流、文档流&#xff09;为什么需要浮动什么是浮动浮动特性&#xff08;重难&#xff09;注意&#xff1a;清除浮动 浮动 常见网页布局 本质&#xff1a;用CSS来摆放盒子&#xff0c;把盒子摆放到相应的位置 三种常见布局方式&…

【亚马逊云】注册APN账号及报考AWS认证考试说明演示

文章目录 1. 登录AWS网站2. 注册APN账号3. 更改APN账号密码&#xff08;选&#xff09;4. 修改APN账号信息&#xff08;选&#xff09;5. 查看AWS认证情况&#xff08;选&#xff09;6. AWS认证考试报名流程7. 修改报名控制台语言版本&#xff08;选&#xff09;8. 开始报名AWS…

首战告捷!KCM Trade漂移队出征2024日本漂移锦标赛(FDJ2)

卓越之姿&#xff0c;非凡之势&#xff01;KCM Trade漂移队以实力点燃激情 当激情与速度交织&#xff0c;当硝烟四起的战场转移到赛车领域&#xff0c;我们见证了一场精彩绝伦、实力与策略并存的较量——KCM Trade漂移队在2024日本漂移锦标赛&#xff08;FDJ2&#xff09;上展现…

专项培训:实在智能携手中国总会计师协会,共襄金融行业数字化转型

6月19日—23日&#xff0c;中国总会计师协会即将在浙江杭州举办“基于大模型的 AI Agent数字员工在金融行业实践应用专项培训”。本次培训旨在深入探讨和实践人工智能技术在金融行业的应用&#xff0c;推动金融行业的智能化和高效化发展。 作为本次培训的协办单位&#xff0c;…

软考--软件设计师--试题六--工厂方法模式(Factory Method)

工厂方法模式(Factory Method) 1、意图 定义一个用于创建对象的接口&#xff0c;让子类决定实例化哪儿一个类&#xff0c;factory method使一个类的实例化延迟到其子类。 2、结构 3、适用性 a、当一个类不知道它所必须创建的对象的类的时候。 b、当一个类希望由它的子类来指定…

第二证券股市技巧|港股交易规则有哪些?

港股商场作为全球首要的股票商场之一&#xff0c;招引了很多出资者的目光。关于港股的生意规则有哪些&#xff0c;第二证券下面就为大家详细介绍一下。 港股的生意规则&#xff1a; 1、港股生意时刻&#xff1a;港股商场的生意时刻分为上午和下午两个时段&#xff0c;上午的生…

零知识证明:哈希函数-Poseidon2代码解析与benchmark

1、哈希函数(Hash Function)与Poseidon 在密码学中,哈希函数是一种将任意大小的数据映射到固定大小的输出的函数。哈希函数的输出称为哈希值或哈希码。哈希函数具有单向性和抗碰撞性。一些常见的哈希函数包括 MD5、SHA-1、SHA-256 和 SHA-3。例如,假设您要验证一个文件的完整…

第八篇 Asciidoc 输出 All In One HTML 解决图片无法显示问题

问题:我的图片显示不出来了 小明使用 Asciidoc 来记笔记,他将笔记输出为 HTML 文件。小丽向小明借笔记。小明将 Asciidoc 笔记输出为 HTML文件,并拷贝给了小丽。 但是,小丽发现,图片都显示不出来了。 小丽:小明,你给我的笔记,图片都显示不出来啊。 小明:是我给你的…

2024CCPC郑州邀请赛暨河南省赛(A,B,C,D,F,G,H,J,K,L,M)

2024 National Invitational of CCPC (Zhengzhou), 2024 CCPC Henan Provincial Collegiate Programming Contest 2024 年中国大学生程序设计竞赛全国邀请赛&#xff08;郑州&#xff09;暨第六届 CCPC 河南省大学生程序设计竞赛 比赛链接 这场的题说实话难度其实都不大&…

AndroidStudio集成高德地图后出现黑屏并报错

报错内容为&#xff1a;No implementation found for void com.autonavi.base.ae.gmap.GLMapEngine.nativeMainThreadTrigger(int, long) (tried Java_com_autonavi_base_ae_gmap_GLMapEngine_nativeMainThreadTrigger and Java_com_autonavi_base_ae_gmap_GLMapEngine_nativeM…

金蝶AAS-V9.0前后端部署

前言 包含金蝶AAS9.0部署&#xff0c;前端部署&#xff0c;后端部署。 金蝶AAS9.0部署 1. 下载金蝶AAS9.0安装包上传至服务器&#xff1b; 2. 解压安装包&#xff1b; unzip -d /opt/AAS-V9.0 AAS-V9.0.zip3. 配置JAVA路径&#xff1b; echo $JAVA_HOME vim /opt/AAS-9.0…

06_机器学习算法_朴素贝叶斯

1. 朴素贝叶斯的介绍与应用 1.1 朴素贝叶斯的介绍 朴素贝叶斯算法(Naive Bayes, NB)是应用最为广泛的分类算法之一。它是基于贝叶斯定义和特征条件独立假设的分类方法。由于朴素贝叶斯法基于贝叶斯公式计算得到,有着坚实的数学基础,以及稳定的分类效率。NB模型所需估计的…

Mac SourceTree配置ssh git仓库

一、准备条件 1、Mac系统电脑 2、安装好SourceTree 3、获取ssh git仓库地址 二、配置步骤 1、打开终端命令行 ssh -t rsa -C "xxx""xxx"代表注册git仓库时&#xff0c;使用的用户名&#xff0c;可以是字符串也可以是邮箱地址。 如果遇到输入密码&#xf…

2024MySQL8安装与绿色版Navicat连接【提供安装包】数据库

视频教程面向人群和使用方法&#xff1a; 1&#xff1a;大学生【解决老师作业或自己兴趣学习需要】; 2&#xff1a;第一次需要安装MySQL的开发者【需要简单使用&#xff0c;因为项目会用到】 3&#xff1a;老手二倍速&#xff0c;新手老老实实按照教程一倍速模仿视频操作&am…

照明灯具十大排名哪个品牌好?照明灯具前十名排行榜大公开!

照明灯具十大排名哪个品牌好&#xff1f;护眼台灯作为照明灯具的重要组成部分&#xff0c;其品质与品牌选择显得尤为关键&#xff0c;市面上品质比较好的护眼台灯品牌有书客、明基、松下等品牌。本文旨在为大家揭晓照明灯具十大排名中的佼佼者&#xff0c;揭示照明灯具前十名的…

思科期末大作业

计算机网络&#xff0c;可代写网络作业&#xff0c; 思科cisco模拟器&#xff0c;eve&#xff0c;制作校园局域网、企业局域网&#xff0c;实现路由交换、单臂路由、冗余、ACL、Nat、PAT、DHCP,RIP,OSPF,pppoe等技术&#xff0c;价格合理&#xff0c;详细私聊

原创|手把手教你构建评分卡模型

作者&#xff1a;胡赟豪‍‍‍‍ 本文约2800字&#xff0c;建议阅读5分钟 本文介绍了构建评分卡模型。‍‍‍ 一、背景 在各种机器学习、深度学习模型快速发展的当下&#xff0c;评分卡模型作为一种可解释机器学习模型&#xff0c;仍然在金融、营销等领域被广泛使用。这一模型通…

vue嵌套路由

一、嵌套 children配置 1.父类路由 mymusic 2.子类路由 musicson 1.创建MusicSon组件 <template><div><p>从前和后来</p><p>唯一</p><p>运气来的似有若无</p></div> </template><script>export defaul…

案例 | 澳鹏自动驾驶标注方案入选虎嗅智库行业报告

随着自动驾驶技术发展及方案演进&#xff0c;市场对于数据标注的数量和质量的需求都呈现指数级增长。传统的手工标注已不能满足标注需求&#xff0c;自动标注伴随大模型的发展应运而生。 在这一背景下&#xff0c;虎嗅智库发布《自动驾驶数据标注技术落地洞察》&#xff0c;并…