Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
D
dataease
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
zhu
dataease
Commits
6a62267d
提交
6a62267d
authored
11月 09, 2021
作者:
wangjiahao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refactor:优化授权查询模型
上级
f32ba3be
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
328 行增加
和
0 行删除
+328
-0
VAuthModel.java
...end/src/main/java/io/dataease/base/domain/VAuthModel.java
+24
-0
VAuthModelExample.java
.../main/java/io/dataease/base/domain/VAuthModelExample.java
+0
-0
VAuthModelWithBLOBs.java
...ain/java/io/dataease/base/domain/VAuthModelWithBLOBs.java
+18
-0
VAuthModelMapper.java
...c/main/java/io/dataease/base/mapper/VAuthModelMapper.java
+28
-0
VAuthModelMapper.xml
...rc/main/java/io/dataease/base/mapper/VAuthModelMapper.xml
+258
-0
没有找到文件。
backend/src/main/java/io/dataease/base/domain/VAuthModel.java
0 → 100644
浏览文件 @
6a62267d
package
io
.
dataease
.
base
.
domain
;
import
java.io.Serializable
;
import
lombok.Data
;
@Data
public
class
VAuthModel
implements
Serializable
{
private
String
id
;
private
String
pid
;
private
String
nodeType
;
private
String
modelType
;
private
String
modelInnerType
;
private
String
authType
;
private
String
createBy
;
private
static
final
long
serialVersionUID
=
1L
;
}
\ No newline at end of file
backend/src/main/java/io/dataease/base/domain/VAuthModelExample.java
0 → 100644
浏览文件 @
6a62267d
差异被折叠。
点击展开。
backend/src/main/java/io/dataease/base/domain/VAuthModelWithBLOBs.java
0 → 100644
浏览文件 @
6a62267d
package
io
.
dataease
.
base
.
domain
;
import
java.io.Serializable
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
lombok.ToString
;
@Data
@EqualsAndHashCode
(
callSuper
=
true
)
@ToString
(
callSuper
=
true
)
public
class
VAuthModelWithBLOBs
extends
VAuthModel
implements
Serializable
{
private
String
name
;
private
String
label
;
private
static
final
long
serialVersionUID
=
1L
;
}
\ No newline at end of file
backend/src/main/java/io/dataease/base/mapper/VAuthModelMapper.java
0 → 100644
浏览文件 @
6a62267d
package
io
.
dataease
.
base
.
mapper
;
import
io.dataease.base.domain.VAuthModel
;
import
io.dataease.base.domain.VAuthModelExample
;
import
io.dataease.base.domain.VAuthModelWithBLOBs
;
import
java.util.List
;
import
org.apache.ibatis.annotations.Param
;
public
interface
VAuthModelMapper
{
long
countByExample
(
VAuthModelExample
example
);
int
deleteByExample
(
VAuthModelExample
example
);
int
insert
(
VAuthModelWithBLOBs
record
);
int
insertSelective
(
VAuthModelWithBLOBs
record
);
List
<
VAuthModelWithBLOBs
>
selectByExampleWithBLOBs
(
VAuthModelExample
example
);
List
<
VAuthModel
>
selectByExample
(
VAuthModelExample
example
);
int
updateByExampleSelective
(
@Param
(
"record"
)
VAuthModelWithBLOBs
record
,
@Param
(
"example"
)
VAuthModelExample
example
);
int
updateByExampleWithBLOBs
(
@Param
(
"record"
)
VAuthModelWithBLOBs
record
,
@Param
(
"example"
)
VAuthModelExample
example
);
int
updateByExample
(
@Param
(
"record"
)
VAuthModel
record
,
@Param
(
"example"
)
VAuthModelExample
example
);
}
\ No newline at end of file
backend/src/main/java/io/dataease/base/mapper/VAuthModelMapper.xml
0 → 100644
浏览文件 @
6a62267d
<?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=
"io.dataease.base.mapper.VAuthModelMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"io.dataease.base.domain.VAuthModel"
>
<result
column=
"id"
jdbcType=
"VARCHAR"
property=
"id"
/>
<result
column=
"pid"
jdbcType=
"VARCHAR"
property=
"pid"
/>
<result
column=
"node_type"
jdbcType=
"VARCHAR"
property=
"nodeType"
/>
<result
column=
"model_type"
jdbcType=
"VARCHAR"
property=
"modelType"
/>
<result
column=
"model_inner_type"
jdbcType=
"VARCHAR"
property=
"modelInnerType"
/>
<result
column=
"auth_type"
jdbcType=
"VARCHAR"
property=
"authType"
/>
<result
column=
"create_by"
jdbcType=
"VARCHAR"
property=
"createBy"
/>
</resultMap>
<resultMap
extends=
"BaseResultMap"
id=
"ResultMapWithBLOBs"
type=
"io.dataease.base.domain.VAuthModelWithBLOBs"
>
<result
column=
"name"
jdbcType=
"LONGVARCHAR"
property=
"name"
/>
<result
column=
"label"
jdbcType=
"LONGVARCHAR"
property=
"label"
/>
</resultMap>
<sql
id=
"Example_Where_Clause"
>
<where>
<foreach
collection=
"oredCriteria"
item=
"criteria"
separator=
"or"
>
<if
test=
"criteria.valid"
>
<trim
prefix=
"("
prefixOverrides=
"and"
suffix=
")"
>
<foreach
collection=
"criteria.criteria"
item=
"criterion"
>
<choose>
<when
test=
"criterion.noValue"
>
and ${criterion.condition}
</when>
<when
test=
"criterion.singleValue"
>
and ${criterion.condition} #{criterion.value}
</when>
<when
test=
"criterion.betweenValue"
>
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when
test=
"criterion.listValue"
>
and ${criterion.condition}
<foreach
close=
")"
collection=
"criterion.value"
item=
"listItem"
open=
"("
separator=
","
>
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql
id=
"Update_By_Example_Where_Clause"
>
<where>
<foreach
collection=
"example.oredCriteria"
item=
"criteria"
separator=
"or"
>
<if
test=
"criteria.valid"
>
<trim
prefix=
"("
prefixOverrides=
"and"
suffix=
")"
>
<foreach
collection=
"criteria.criteria"
item=
"criterion"
>
<choose>
<when
test=
"criterion.noValue"
>
and ${criterion.condition}
</when>
<when
test=
"criterion.singleValue"
>
and ${criterion.condition} #{criterion.value}
</when>
<when
test=
"criterion.betweenValue"
>
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
</when>
<when
test=
"criterion.listValue"
>
and ${criterion.condition}
<foreach
close=
")"
collection=
"criterion.value"
item=
"listItem"
open=
"("
separator=
","
>
#{listItem}
</foreach>
</when>
</choose>
</foreach>
</trim>
</if>
</foreach>
</where>
</sql>
<sql
id=
"Base_Column_List"
>
id, pid, node_type, model_type, model_inner_type, auth_type, create_by
</sql>
<sql
id=
"Blob_Column_List"
>
`name`, `label`
</sql>
<select
id=
"selectByExampleWithBLOBs"
parameterType=
"io.dataease.base.domain.VAuthModelExample"
resultMap=
"ResultMapWithBLOBs"
>
select
<if
test=
"distinct"
>
distinct
</if>
<include
refid=
"Base_Column_List"
/>
,
<include
refid=
"Blob_Column_List"
/>
from v_auth_model
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
<if
test=
"orderByClause != null"
>
order by ${orderByClause}
</if>
</select>
<select
id=
"selectByExample"
parameterType=
"io.dataease.base.domain.VAuthModelExample"
resultMap=
"BaseResultMap"
>
select
<if
test=
"distinct"
>
distinct
</if>
<include
refid=
"Base_Column_List"
/>
from v_auth_model
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
<if
test=
"orderByClause != null"
>
order by ${orderByClause}
</if>
</select>
<delete
id=
"deleteByExample"
parameterType=
"io.dataease.base.domain.VAuthModelExample"
>
delete from v_auth_model
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</delete>
<insert
id=
"insert"
parameterType=
"io.dataease.base.domain.VAuthModelWithBLOBs"
>
insert into v_auth_model (id, pid, node_type,
model_type, model_inner_type, auth_type,
create_by, `name`, `label`
)
values (#{id,jdbcType=VARCHAR}, #{pid,jdbcType=VARCHAR}, #{nodeType,jdbcType=VARCHAR},
#{modelType,jdbcType=VARCHAR}, #{modelInnerType,jdbcType=VARCHAR}, #{authType,jdbcType=VARCHAR},
#{createBy,jdbcType=VARCHAR}, #{name,jdbcType=LONGVARCHAR}, #{label,jdbcType=LONGVARCHAR}
)
</insert>
<insert
id=
"insertSelective"
parameterType=
"io.dataease.base.domain.VAuthModelWithBLOBs"
>
insert into v_auth_model
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
id,
</if>
<if
test=
"pid != null"
>
pid,
</if>
<if
test=
"nodeType != null"
>
node_type,
</if>
<if
test=
"modelType != null"
>
model_type,
</if>
<if
test=
"modelInnerType != null"
>
model_inner_type,
</if>
<if
test=
"authType != null"
>
auth_type,
</if>
<if
test=
"createBy != null"
>
create_by,
</if>
<if
test=
"name != null"
>
`name`,
</if>
<if
test=
"label != null"
>
`label`,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"id != null"
>
#{id,jdbcType=VARCHAR},
</if>
<if
test=
"pid != null"
>
#{pid,jdbcType=VARCHAR},
</if>
<if
test=
"nodeType != null"
>
#{nodeType,jdbcType=VARCHAR},
</if>
<if
test=
"modelType != null"
>
#{modelType,jdbcType=VARCHAR},
</if>
<if
test=
"modelInnerType != null"
>
#{modelInnerType,jdbcType=VARCHAR},
</if>
<if
test=
"authType != null"
>
#{authType,jdbcType=VARCHAR},
</if>
<if
test=
"createBy != null"
>
#{createBy,jdbcType=VARCHAR},
</if>
<if
test=
"name != null"
>
#{name,jdbcType=LONGVARCHAR},
</if>
<if
test=
"label != null"
>
#{label,jdbcType=LONGVARCHAR},
</if>
</trim>
</insert>
<select
id=
"countByExample"
parameterType=
"io.dataease.base.domain.VAuthModelExample"
resultType=
"java.lang.Long"
>
select count(*) from v_auth_model
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</select>
<update
id=
"updateByExampleSelective"
parameterType=
"map"
>
update v_auth_model
<set>
<if
test=
"record.id != null"
>
id = #{record.id,jdbcType=VARCHAR},
</if>
<if
test=
"record.pid != null"
>
pid = #{record.pid,jdbcType=VARCHAR},
</if>
<if
test=
"record.nodeType != null"
>
node_type = #{record.nodeType,jdbcType=VARCHAR},
</if>
<if
test=
"record.modelType != null"
>
model_type = #{record.modelType,jdbcType=VARCHAR},
</if>
<if
test=
"record.modelInnerType != null"
>
model_inner_type = #{record.modelInnerType,jdbcType=VARCHAR},
</if>
<if
test=
"record.authType != null"
>
auth_type = #{record.authType,jdbcType=VARCHAR},
</if>
<if
test=
"record.createBy != null"
>
create_by = #{record.createBy,jdbcType=VARCHAR},
</if>
<if
test=
"record.name != null"
>
`name` = #{record.name,jdbcType=LONGVARCHAR},
</if>
<if
test=
"record.label != null"
>
`label` = #{record.label,jdbcType=LONGVARCHAR},
</if>
</set>
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByExampleWithBLOBs"
parameterType=
"map"
>
update v_auth_model
set id = #{record.id,jdbcType=VARCHAR},
pid = #{record.pid,jdbcType=VARCHAR},
node_type = #{record.nodeType,jdbcType=VARCHAR},
model_type = #{record.modelType,jdbcType=VARCHAR},
model_inner_type = #{record.modelInnerType,jdbcType=VARCHAR},
auth_type = #{record.authType,jdbcType=VARCHAR},
create_by = #{record.createBy,jdbcType=VARCHAR},
`name` = #{record.name,jdbcType=LONGVARCHAR},
`label` = #{record.label,jdbcType=LONGVARCHAR}
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByExample"
parameterType=
"map"
>
update v_auth_model
set id = #{record.id,jdbcType=VARCHAR},
pid = #{record.pid,jdbcType=VARCHAR},
node_type = #{record.nodeType,jdbcType=VARCHAR},
model_type = #{record.modelType,jdbcType=VARCHAR},
model_inner_type = #{record.modelInnerType,jdbcType=VARCHAR},
auth_type = #{record.authType,jdbcType=VARCHAR},
create_by = #{record.createBy,jdbcType=VARCHAR}
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
</mapper>
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论