Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
D
dataease
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
njgzx
dataease
Commits
3d143c86
提交
3d143c86
authored
2月 20, 2021
作者:
fit2cloud-chenyw
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat: 新增组织机构
上级
a0773f11
显示空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
1355 行增加
和
0 行删除
+1355
-0
SysDept.java
backend/src/main/java/io/dataease/base/domain/SysDept.java
+33
-0
SysDeptExample.java
...src/main/java/io/dataease/base/domain/SysDeptExample.java
+892
-0
SysDeptMapper.java
.../src/main/java/io/dataease/base/mapper/SysDeptMapper.java
+31
-0
SysDeptMapper.xml
...d/src/main/java/io/dataease/base/mapper/SysDeptMapper.xml
+307
-0
SysDeptController.java
...in/java/io/dataease/controller/sys/SysDeptController.java
+38
-0
DeptCreateRequest.java
...io/dataease/controller/sys/request/DeptCreateRequest.java
+6
-0
DeptService.java
...nd/src/main/java/io/dataease/service/sys/DeptService.java
+48
-0
没有找到文件。
backend/src/main/java/io/dataease/base/domain/SysDept.java
0 → 100644
浏览文件 @
3d143c86
package
io
.
dataease
.
base
.
domain
;
import
java.io.Serializable
;
import
java.util.Date
;
import
lombok.Data
;
@Data
public
class
SysDept
implements
Serializable
{
private
Long
deptId
;
private
Long
pid
;
private
Integer
subCount
;
private
String
name
;
private
Integer
level
;
private
Integer
deptSort
;
private
Boolean
enabled
;
private
String
createBy
;
private
String
updateBy
;
private
Date
createTime
;
private
Date
updateTime
;
private
static
final
long
serialVersionUID
=
1L
;
}
\ No newline at end of file
backend/src/main/java/io/dataease/base/domain/SysDeptExample.java
0 → 100644
浏览文件 @
3d143c86
package
io
.
dataease
.
base
.
domain
;
import
java.util.ArrayList
;
import
java.util.Date
;
import
java.util.List
;
public
class
SysDeptExample
{
protected
String
orderByClause
;
protected
boolean
distinct
;
protected
List
<
Criteria
>
oredCriteria
;
public
SysDeptExample
()
{
oredCriteria
=
new
ArrayList
<
Criteria
>();
}
public
void
setOrderByClause
(
String
orderByClause
)
{
this
.
orderByClause
=
orderByClause
;
}
public
String
getOrderByClause
()
{
return
orderByClause
;
}
public
void
setDistinct
(
boolean
distinct
)
{
this
.
distinct
=
distinct
;
}
public
boolean
isDistinct
()
{
return
distinct
;
}
public
List
<
Criteria
>
getOredCriteria
()
{
return
oredCriteria
;
}
public
void
or
(
Criteria
criteria
)
{
oredCriteria
.
add
(
criteria
);
}
public
Criteria
or
()
{
Criteria
criteria
=
createCriteriaInternal
();
oredCriteria
.
add
(
criteria
);
return
criteria
;
}
public
Criteria
createCriteria
()
{
Criteria
criteria
=
createCriteriaInternal
();
if
(
oredCriteria
.
size
()
==
0
)
{
oredCriteria
.
add
(
criteria
);
}
return
criteria
;
}
protected
Criteria
createCriteriaInternal
()
{
Criteria
criteria
=
new
Criteria
();
return
criteria
;
}
public
void
clear
()
{
oredCriteria
.
clear
();
orderByClause
=
null
;
distinct
=
false
;
}
protected
abstract
static
class
GeneratedCriteria
{
protected
List
<
Criterion
>
criteria
;
protected
GeneratedCriteria
()
{
super
();
criteria
=
new
ArrayList
<
Criterion
>();
}
public
boolean
isValid
()
{
return
criteria
.
size
()
>
0
;
}
public
List
<
Criterion
>
getAllCriteria
()
{
return
criteria
;
}
public
List
<
Criterion
>
getCriteria
()
{
return
criteria
;
}
protected
void
addCriterion
(
String
condition
)
{
if
(
condition
==
null
)
{
throw
new
RuntimeException
(
"Value for condition cannot be null"
);
}
criteria
.
add
(
new
Criterion
(
condition
));
}
protected
void
addCriterion
(
String
condition
,
Object
value
,
String
property
)
{
if
(
value
==
null
)
{
throw
new
RuntimeException
(
"Value for "
+
property
+
" cannot be null"
);
}
criteria
.
add
(
new
Criterion
(
condition
,
value
));
}
protected
void
addCriterion
(
String
condition
,
Object
value1
,
Object
value2
,
String
property
)
{
if
(
value1
==
null
||
value2
==
null
)
{
throw
new
RuntimeException
(
"Between values for "
+
property
+
" cannot be null"
);
}
criteria
.
add
(
new
Criterion
(
condition
,
value1
,
value2
));
}
public
Criteria
andDeptIdIsNull
()
{
addCriterion
(
"dept_id is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptIdIsNotNull
()
{
addCriterion
(
"dept_id is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptIdEqualTo
(
Long
value
)
{
addCriterion
(
"dept_id ="
,
value
,
"deptId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptIdNotEqualTo
(
Long
value
)
{
addCriterion
(
"dept_id <>"
,
value
,
"deptId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptIdGreaterThan
(
Long
value
)
{
addCriterion
(
"dept_id >"
,
value
,
"deptId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptIdGreaterThanOrEqualTo
(
Long
value
)
{
addCriterion
(
"dept_id >="
,
value
,
"deptId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptIdLessThan
(
Long
value
)
{
addCriterion
(
"dept_id <"
,
value
,
"deptId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptIdLessThanOrEqualTo
(
Long
value
)
{
addCriterion
(
"dept_id <="
,
value
,
"deptId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptIdIn
(
List
<
Long
>
values
)
{
addCriterion
(
"dept_id in"
,
values
,
"deptId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptIdNotIn
(
List
<
Long
>
values
)
{
addCriterion
(
"dept_id not in"
,
values
,
"deptId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptIdBetween
(
Long
value1
,
Long
value2
)
{
addCriterion
(
"dept_id between"
,
value1
,
value2
,
"deptId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptIdNotBetween
(
Long
value1
,
Long
value2
)
{
addCriterion
(
"dept_id not between"
,
value1
,
value2
,
"deptId"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPidIsNull
()
{
addCriterion
(
"pid is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPidIsNotNull
()
{
addCriterion
(
"pid is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPidEqualTo
(
Long
value
)
{
addCriterion
(
"pid ="
,
value
,
"pid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPidNotEqualTo
(
Long
value
)
{
addCriterion
(
"pid <>"
,
value
,
"pid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPidGreaterThan
(
Long
value
)
{
addCriterion
(
"pid >"
,
value
,
"pid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPidGreaterThanOrEqualTo
(
Long
value
)
{
addCriterion
(
"pid >="
,
value
,
"pid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPidLessThan
(
Long
value
)
{
addCriterion
(
"pid <"
,
value
,
"pid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPidLessThanOrEqualTo
(
Long
value
)
{
addCriterion
(
"pid <="
,
value
,
"pid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPidIn
(
List
<
Long
>
values
)
{
addCriterion
(
"pid in"
,
values
,
"pid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPidNotIn
(
List
<
Long
>
values
)
{
addCriterion
(
"pid not in"
,
values
,
"pid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPidBetween
(
Long
value1
,
Long
value2
)
{
addCriterion
(
"pid between"
,
value1
,
value2
,
"pid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andPidNotBetween
(
Long
value1
,
Long
value2
)
{
addCriterion
(
"pid not between"
,
value1
,
value2
,
"pid"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSubCountIsNull
()
{
addCriterion
(
"sub_count is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSubCountIsNotNull
()
{
addCriterion
(
"sub_count is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSubCountEqualTo
(
Integer
value
)
{
addCriterion
(
"sub_count ="
,
value
,
"subCount"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSubCountNotEqualTo
(
Integer
value
)
{
addCriterion
(
"sub_count <>"
,
value
,
"subCount"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSubCountGreaterThan
(
Integer
value
)
{
addCriterion
(
"sub_count >"
,
value
,
"subCount"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSubCountGreaterThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"sub_count >="
,
value
,
"subCount"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSubCountLessThan
(
Integer
value
)
{
addCriterion
(
"sub_count <"
,
value
,
"subCount"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSubCountLessThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"sub_count <="
,
value
,
"subCount"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSubCountIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"sub_count in"
,
values
,
"subCount"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSubCountNotIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"sub_count not in"
,
values
,
"subCount"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSubCountBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"sub_count between"
,
value1
,
value2
,
"subCount"
);
return
(
Criteria
)
this
;
}
public
Criteria
andSubCountNotBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"sub_count not between"
,
value1
,
value2
,
"subCount"
);
return
(
Criteria
)
this
;
}
public
Criteria
andNameIsNull
()
{
addCriterion
(
"`name` is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andNameIsNotNull
()
{
addCriterion
(
"`name` is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andNameEqualTo
(
String
value
)
{
addCriterion
(
"`name` ="
,
value
,
"name"
);
return
(
Criteria
)
this
;
}
public
Criteria
andNameNotEqualTo
(
String
value
)
{
addCriterion
(
"`name` <>"
,
value
,
"name"
);
return
(
Criteria
)
this
;
}
public
Criteria
andNameGreaterThan
(
String
value
)
{
addCriterion
(
"`name` >"
,
value
,
"name"
);
return
(
Criteria
)
this
;
}
public
Criteria
andNameGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"`name` >="
,
value
,
"name"
);
return
(
Criteria
)
this
;
}
public
Criteria
andNameLessThan
(
String
value
)
{
addCriterion
(
"`name` <"
,
value
,
"name"
);
return
(
Criteria
)
this
;
}
public
Criteria
andNameLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"`name` <="
,
value
,
"name"
);
return
(
Criteria
)
this
;
}
public
Criteria
andNameLike
(
String
value
)
{
addCriterion
(
"`name` like"
,
value
,
"name"
);
return
(
Criteria
)
this
;
}
public
Criteria
andNameNotLike
(
String
value
)
{
addCriterion
(
"`name` not like"
,
value
,
"name"
);
return
(
Criteria
)
this
;
}
public
Criteria
andNameIn
(
List
<
String
>
values
)
{
addCriterion
(
"`name` in"
,
values
,
"name"
);
return
(
Criteria
)
this
;
}
public
Criteria
andNameNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"`name` not in"
,
values
,
"name"
);
return
(
Criteria
)
this
;
}
public
Criteria
andNameBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"`name` between"
,
value1
,
value2
,
"name"
);
return
(
Criteria
)
this
;
}
public
Criteria
andNameNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"`name` not between"
,
value1
,
value2
,
"name"
);
return
(
Criteria
)
this
;
}
public
Criteria
andLevelIsNull
()
{
addCriterion
(
"`level` is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andLevelIsNotNull
()
{
addCriterion
(
"`level` is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andLevelEqualTo
(
Integer
value
)
{
addCriterion
(
"`level` ="
,
value
,
"level"
);
return
(
Criteria
)
this
;
}
public
Criteria
andLevelNotEqualTo
(
Integer
value
)
{
addCriterion
(
"`level` <>"
,
value
,
"level"
);
return
(
Criteria
)
this
;
}
public
Criteria
andLevelGreaterThan
(
Integer
value
)
{
addCriterion
(
"`level` >"
,
value
,
"level"
);
return
(
Criteria
)
this
;
}
public
Criteria
andLevelGreaterThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"`level` >="
,
value
,
"level"
);
return
(
Criteria
)
this
;
}
public
Criteria
andLevelLessThan
(
Integer
value
)
{
addCriterion
(
"`level` <"
,
value
,
"level"
);
return
(
Criteria
)
this
;
}
public
Criteria
andLevelLessThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"`level` <="
,
value
,
"level"
);
return
(
Criteria
)
this
;
}
public
Criteria
andLevelIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"`level` in"
,
values
,
"level"
);
return
(
Criteria
)
this
;
}
public
Criteria
andLevelNotIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"`level` not in"
,
values
,
"level"
);
return
(
Criteria
)
this
;
}
public
Criteria
andLevelBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"`level` between"
,
value1
,
value2
,
"level"
);
return
(
Criteria
)
this
;
}
public
Criteria
andLevelNotBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"`level` not between"
,
value1
,
value2
,
"level"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptSortIsNull
()
{
addCriterion
(
"dept_sort is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptSortIsNotNull
()
{
addCriterion
(
"dept_sort is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptSortEqualTo
(
Integer
value
)
{
addCriterion
(
"dept_sort ="
,
value
,
"deptSort"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptSortNotEqualTo
(
Integer
value
)
{
addCriterion
(
"dept_sort <>"
,
value
,
"deptSort"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptSortGreaterThan
(
Integer
value
)
{
addCriterion
(
"dept_sort >"
,
value
,
"deptSort"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptSortGreaterThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"dept_sort >="
,
value
,
"deptSort"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptSortLessThan
(
Integer
value
)
{
addCriterion
(
"dept_sort <"
,
value
,
"deptSort"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptSortLessThanOrEqualTo
(
Integer
value
)
{
addCriterion
(
"dept_sort <="
,
value
,
"deptSort"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptSortIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"dept_sort in"
,
values
,
"deptSort"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptSortNotIn
(
List
<
Integer
>
values
)
{
addCriterion
(
"dept_sort not in"
,
values
,
"deptSort"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptSortBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"dept_sort between"
,
value1
,
value2
,
"deptSort"
);
return
(
Criteria
)
this
;
}
public
Criteria
andDeptSortNotBetween
(
Integer
value1
,
Integer
value2
)
{
addCriterion
(
"dept_sort not between"
,
value1
,
value2
,
"deptSort"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEnabledIsNull
()
{
addCriterion
(
"enabled is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEnabledIsNotNull
()
{
addCriterion
(
"enabled is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEnabledEqualTo
(
Boolean
value
)
{
addCriterion
(
"enabled ="
,
value
,
"enabled"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEnabledNotEqualTo
(
Boolean
value
)
{
addCriterion
(
"enabled <>"
,
value
,
"enabled"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEnabledGreaterThan
(
Boolean
value
)
{
addCriterion
(
"enabled >"
,
value
,
"enabled"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEnabledGreaterThanOrEqualTo
(
Boolean
value
)
{
addCriterion
(
"enabled >="
,
value
,
"enabled"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEnabledLessThan
(
Boolean
value
)
{
addCriterion
(
"enabled <"
,
value
,
"enabled"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEnabledLessThanOrEqualTo
(
Boolean
value
)
{
addCriterion
(
"enabled <="
,
value
,
"enabled"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEnabledIn
(
List
<
Boolean
>
values
)
{
addCriterion
(
"enabled in"
,
values
,
"enabled"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEnabledNotIn
(
List
<
Boolean
>
values
)
{
addCriterion
(
"enabled not in"
,
values
,
"enabled"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEnabledBetween
(
Boolean
value1
,
Boolean
value2
)
{
addCriterion
(
"enabled between"
,
value1
,
value2
,
"enabled"
);
return
(
Criteria
)
this
;
}
public
Criteria
andEnabledNotBetween
(
Boolean
value1
,
Boolean
value2
)
{
addCriterion
(
"enabled not between"
,
value1
,
value2
,
"enabled"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateByIsNull
()
{
addCriterion
(
"create_by is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateByIsNotNull
()
{
addCriterion
(
"create_by is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateByEqualTo
(
String
value
)
{
addCriterion
(
"create_by ="
,
value
,
"createBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateByNotEqualTo
(
String
value
)
{
addCriterion
(
"create_by <>"
,
value
,
"createBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateByGreaterThan
(
String
value
)
{
addCriterion
(
"create_by >"
,
value
,
"createBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateByGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"create_by >="
,
value
,
"createBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateByLessThan
(
String
value
)
{
addCriterion
(
"create_by <"
,
value
,
"createBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateByLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"create_by <="
,
value
,
"createBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateByLike
(
String
value
)
{
addCriterion
(
"create_by like"
,
value
,
"createBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateByNotLike
(
String
value
)
{
addCriterion
(
"create_by not like"
,
value
,
"createBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateByIn
(
List
<
String
>
values
)
{
addCriterion
(
"create_by in"
,
values
,
"createBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateByNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"create_by not in"
,
values
,
"createBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateByBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"create_by between"
,
value1
,
value2
,
"createBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateByNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"create_by not between"
,
value1
,
value2
,
"createBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateByIsNull
()
{
addCriterion
(
"update_by is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateByIsNotNull
()
{
addCriterion
(
"update_by is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateByEqualTo
(
String
value
)
{
addCriterion
(
"update_by ="
,
value
,
"updateBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateByNotEqualTo
(
String
value
)
{
addCriterion
(
"update_by <>"
,
value
,
"updateBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateByGreaterThan
(
String
value
)
{
addCriterion
(
"update_by >"
,
value
,
"updateBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateByGreaterThanOrEqualTo
(
String
value
)
{
addCriterion
(
"update_by >="
,
value
,
"updateBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateByLessThan
(
String
value
)
{
addCriterion
(
"update_by <"
,
value
,
"updateBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateByLessThanOrEqualTo
(
String
value
)
{
addCriterion
(
"update_by <="
,
value
,
"updateBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateByLike
(
String
value
)
{
addCriterion
(
"update_by like"
,
value
,
"updateBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateByNotLike
(
String
value
)
{
addCriterion
(
"update_by not like"
,
value
,
"updateBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateByIn
(
List
<
String
>
values
)
{
addCriterion
(
"update_by in"
,
values
,
"updateBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateByNotIn
(
List
<
String
>
values
)
{
addCriterion
(
"update_by not in"
,
values
,
"updateBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateByBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"update_by between"
,
value1
,
value2
,
"updateBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateByNotBetween
(
String
value1
,
String
value2
)
{
addCriterion
(
"update_by not between"
,
value1
,
value2
,
"updateBy"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeIsNull
()
{
addCriterion
(
"create_time is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeIsNotNull
()
{
addCriterion
(
"create_time is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeEqualTo
(
Date
value
)
{
addCriterion
(
"create_time ="
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeNotEqualTo
(
Date
value
)
{
addCriterion
(
"create_time <>"
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeGreaterThan
(
Date
value
)
{
addCriterion
(
"create_time >"
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeGreaterThanOrEqualTo
(
Date
value
)
{
addCriterion
(
"create_time >="
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeLessThan
(
Date
value
)
{
addCriterion
(
"create_time <"
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeLessThanOrEqualTo
(
Date
value
)
{
addCriterion
(
"create_time <="
,
value
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeIn
(
List
<
Date
>
values
)
{
addCriterion
(
"create_time in"
,
values
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeNotIn
(
List
<
Date
>
values
)
{
addCriterion
(
"create_time not in"
,
values
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeBetween
(
Date
value1
,
Date
value2
)
{
addCriterion
(
"create_time between"
,
value1
,
value2
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andCreateTimeNotBetween
(
Date
value1
,
Date
value2
)
{
addCriterion
(
"create_time not between"
,
value1
,
value2
,
"createTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeIsNull
()
{
addCriterion
(
"update_time is null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeIsNotNull
()
{
addCriterion
(
"update_time is not null"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeEqualTo
(
Date
value
)
{
addCriterion
(
"update_time ="
,
value
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeNotEqualTo
(
Date
value
)
{
addCriterion
(
"update_time <>"
,
value
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeGreaterThan
(
Date
value
)
{
addCriterion
(
"update_time >"
,
value
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeGreaterThanOrEqualTo
(
Date
value
)
{
addCriterion
(
"update_time >="
,
value
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeLessThan
(
Date
value
)
{
addCriterion
(
"update_time <"
,
value
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeLessThanOrEqualTo
(
Date
value
)
{
addCriterion
(
"update_time <="
,
value
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeIn
(
List
<
Date
>
values
)
{
addCriterion
(
"update_time in"
,
values
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeNotIn
(
List
<
Date
>
values
)
{
addCriterion
(
"update_time not in"
,
values
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeBetween
(
Date
value1
,
Date
value2
)
{
addCriterion
(
"update_time between"
,
value1
,
value2
,
"updateTime"
);
return
(
Criteria
)
this
;
}
public
Criteria
andUpdateTimeNotBetween
(
Date
value1
,
Date
value2
)
{
addCriterion
(
"update_time not between"
,
value1
,
value2
,
"updateTime"
);
return
(
Criteria
)
this
;
}
}
public
static
class
Criteria
extends
GeneratedCriteria
{
protected
Criteria
()
{
super
();
}
}
public
static
class
Criterion
{
private
String
condition
;
private
Object
value
;
private
Object
secondValue
;
private
boolean
noValue
;
private
boolean
singleValue
;
private
boolean
betweenValue
;
private
boolean
listValue
;
private
String
typeHandler
;
public
String
getCondition
()
{
return
condition
;
}
public
Object
getValue
()
{
return
value
;
}
public
Object
getSecondValue
()
{
return
secondValue
;
}
public
boolean
isNoValue
()
{
return
noValue
;
}
public
boolean
isSingleValue
()
{
return
singleValue
;
}
public
boolean
isBetweenValue
()
{
return
betweenValue
;
}
public
boolean
isListValue
()
{
return
listValue
;
}
public
String
getTypeHandler
()
{
return
typeHandler
;
}
protected
Criterion
(
String
condition
)
{
super
();
this
.
condition
=
condition
;
this
.
typeHandler
=
null
;
this
.
noValue
=
true
;
}
protected
Criterion
(
String
condition
,
Object
value
,
String
typeHandler
)
{
super
();
this
.
condition
=
condition
;
this
.
value
=
value
;
this
.
typeHandler
=
typeHandler
;
if
(
value
instanceof
List
<?>)
{
this
.
listValue
=
true
;
}
else
{
this
.
singleValue
=
true
;
}
}
protected
Criterion
(
String
condition
,
Object
value
)
{
this
(
condition
,
value
,
null
);
}
protected
Criterion
(
String
condition
,
Object
value
,
Object
secondValue
,
String
typeHandler
)
{
super
();
this
.
condition
=
condition
;
this
.
value
=
value
;
this
.
secondValue
=
secondValue
;
this
.
typeHandler
=
typeHandler
;
this
.
betweenValue
=
true
;
}
protected
Criterion
(
String
condition
,
Object
value
,
Object
secondValue
)
{
this
(
condition
,
value
,
secondValue
,
null
);
}
}
}
\ No newline at end of file
backend/src/main/java/io/dataease/base/mapper/SysDeptMapper.java
0 → 100644
浏览文件 @
3d143c86
package
io
.
dataease
.
base
.
mapper
;
import
io.dataease.base.domain.SysDept
;
import
io.dataease.base.domain.SysDeptExample
;
import
java.util.List
;
import
org.apache.ibatis.annotations.Param
;
public
interface
SysDeptMapper
{
long
countByExample
(
SysDeptExample
example
);
int
deleteByExample
(
SysDeptExample
example
);
int
deleteByPrimaryKey
(
Long
deptId
);
int
insert
(
SysDept
record
);
int
insertSelective
(
SysDept
record
);
List
<
SysDept
>
selectByExample
(
SysDeptExample
example
);
SysDept
selectByPrimaryKey
(
Long
deptId
);
int
updateByExampleSelective
(
@Param
(
"record"
)
SysDept
record
,
@Param
(
"example"
)
SysDeptExample
example
);
int
updateByExample
(
@Param
(
"record"
)
SysDept
record
,
@Param
(
"example"
)
SysDeptExample
example
);
int
updateByPrimaryKeySelective
(
SysDept
record
);
int
updateByPrimaryKey
(
SysDept
record
);
}
\ No newline at end of file
backend/src/main/java/io/dataease/base/mapper/SysDeptMapper.xml
0 → 100644
浏览文件 @
3d143c86
<?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.SysDeptMapper"
>
<resultMap
id=
"BaseResultMap"
type=
"io.dataease.base.domain.SysDept"
>
<id
column=
"dept_id"
jdbcType=
"BIGINT"
property=
"deptId"
/>
<result
column=
"pid"
jdbcType=
"BIGINT"
property=
"pid"
/>
<result
column=
"sub_count"
jdbcType=
"INTEGER"
property=
"subCount"
/>
<result
column=
"name"
jdbcType=
"VARCHAR"
property=
"name"
/>
<result
column=
"level"
jdbcType=
"INTEGER"
property=
"level"
/>
<result
column=
"dept_sort"
jdbcType=
"INTEGER"
property=
"deptSort"
/>
<result
column=
"enabled"
jdbcType=
"BIT"
property=
"enabled"
/>
<result
column=
"create_by"
jdbcType=
"VARCHAR"
property=
"createBy"
/>
<result
column=
"update_by"
jdbcType=
"VARCHAR"
property=
"updateBy"
/>
<result
column=
"create_time"
jdbcType=
"TIMESTAMP"
property=
"createTime"
/>
<result
column=
"update_time"
jdbcType=
"TIMESTAMP"
property=
"updateTime"
/>
</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"
>
dept_id, pid, sub_count, `name`, `level`, dept_sort, enabled, create_by, update_by,
create_time, update_time
</sql>
<select
id=
"selectByExample"
parameterType=
"io.dataease.base.domain.SysDeptExample"
resultMap=
"BaseResultMap"
>
select
<if
test=
"distinct"
>
distinct
</if>
<include
refid=
"Base_Column_List"
/>
from sys_dept
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
<if
test=
"orderByClause != null"
>
order by ${orderByClause}
</if>
</select>
<select
id=
"selectByPrimaryKey"
parameterType=
"java.lang.Long"
resultMap=
"BaseResultMap"
>
select
<include
refid=
"Base_Column_List"
/>
from sys_dept
where dept_id = #{deptId,jdbcType=BIGINT}
</select>
<delete
id=
"deleteByPrimaryKey"
parameterType=
"java.lang.Long"
>
delete from sys_dept
where dept_id = #{deptId,jdbcType=BIGINT}
</delete>
<delete
id=
"deleteByExample"
parameterType=
"io.dataease.base.domain.SysDeptExample"
>
delete from sys_dept
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</delete>
<insert
id=
"insert"
parameterType=
"io.dataease.base.domain.SysDept"
>
insert into sys_dept (dept_id, pid, sub_count,
`name`, `level`, dept_sort,
enabled, create_by, update_by,
create_time, update_time)
values (#{deptId,jdbcType=BIGINT}, #{pid,jdbcType=BIGINT}, #{subCount,jdbcType=INTEGER},
#{name,jdbcType=VARCHAR}, #{level,jdbcType=INTEGER}, #{deptSort,jdbcType=INTEGER},
#{enabled,jdbcType=BIT}, #{createBy,jdbcType=VARCHAR}, #{updateBy,jdbcType=VARCHAR},
#{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP})
</insert>
<insert
id=
"insertSelective"
parameterType=
"io.dataease.base.domain.SysDept"
>
insert into sys_dept
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"deptId != null"
>
dept_id,
</if>
<if
test=
"pid != null"
>
pid,
</if>
<if
test=
"subCount != null"
>
sub_count,
</if>
<if
test=
"name != null"
>
`name`,
</if>
<if
test=
"level != null"
>
`level`,
</if>
<if
test=
"deptSort != null"
>
dept_sort,
</if>
<if
test=
"enabled != null"
>
enabled,
</if>
<if
test=
"createBy != null"
>
create_by,
</if>
<if
test=
"updateBy != null"
>
update_by,
</if>
<if
test=
"createTime != null"
>
create_time,
</if>
<if
test=
"updateTime != null"
>
update_time,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"deptId != null"
>
#{deptId,jdbcType=BIGINT},
</if>
<if
test=
"pid != null"
>
#{pid,jdbcType=BIGINT},
</if>
<if
test=
"subCount != null"
>
#{subCount,jdbcType=INTEGER},
</if>
<if
test=
"name != null"
>
#{name,jdbcType=VARCHAR},
</if>
<if
test=
"level != null"
>
#{level,jdbcType=INTEGER},
</if>
<if
test=
"deptSort != null"
>
#{deptSort,jdbcType=INTEGER},
</if>
<if
test=
"enabled != null"
>
#{enabled,jdbcType=BIT},
</if>
<if
test=
"createBy != null"
>
#{createBy,jdbcType=VARCHAR},
</if>
<if
test=
"updateBy != null"
>
#{updateBy,jdbcType=VARCHAR},
</if>
<if
test=
"createTime != null"
>
#{createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"updateTime != null"
>
#{updateTime,jdbcType=TIMESTAMP},
</if>
</trim>
</insert>
<select
id=
"countByExample"
parameterType=
"io.dataease.base.domain.SysDeptExample"
resultType=
"java.lang.Long"
>
select count(*) from sys_dept
<if
test=
"_parameter != null"
>
<include
refid=
"Example_Where_Clause"
/>
</if>
</select>
<update
id=
"updateByExampleSelective"
parameterType=
"map"
>
update sys_dept
<set>
<if
test=
"record.deptId != null"
>
dept_id = #{record.deptId,jdbcType=BIGINT},
</if>
<if
test=
"record.pid != null"
>
pid = #{record.pid,jdbcType=BIGINT},
</if>
<if
test=
"record.subCount != null"
>
sub_count = #{record.subCount,jdbcType=INTEGER},
</if>
<if
test=
"record.name != null"
>
`name` = #{record.name,jdbcType=VARCHAR},
</if>
<if
test=
"record.level != null"
>
`level` = #{record.level,jdbcType=INTEGER},
</if>
<if
test=
"record.deptSort != null"
>
dept_sort = #{record.deptSort,jdbcType=INTEGER},
</if>
<if
test=
"record.enabled != null"
>
enabled = #{record.enabled,jdbcType=BIT},
</if>
<if
test=
"record.createBy != null"
>
create_by = #{record.createBy,jdbcType=VARCHAR},
</if>
<if
test=
"record.updateBy != null"
>
update_by = #{record.updateBy,jdbcType=VARCHAR},
</if>
<if
test=
"record.createTime != null"
>
create_time = #{record.createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"record.updateTime != null"
>
update_time = #{record.updateTime,jdbcType=TIMESTAMP},
</if>
</set>
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByExample"
parameterType=
"map"
>
update sys_dept
set dept_id = #{record.deptId,jdbcType=BIGINT},
pid = #{record.pid,jdbcType=BIGINT},
sub_count = #{record.subCount,jdbcType=INTEGER},
`name` = #{record.name,jdbcType=VARCHAR},
`level` = #{record.level,jdbcType=INTEGER},
dept_sort = #{record.deptSort,jdbcType=INTEGER},
enabled = #{record.enabled,jdbcType=BIT},
create_by = #{record.createBy,jdbcType=VARCHAR},
update_by = #{record.updateBy,jdbcType=VARCHAR},
create_time = #{record.createTime,jdbcType=TIMESTAMP},
update_time = #{record.updateTime,jdbcType=TIMESTAMP}
<if
test=
"_parameter != null"
>
<include
refid=
"Update_By_Example_Where_Clause"
/>
</if>
</update>
<update
id=
"updateByPrimaryKeySelective"
parameterType=
"io.dataease.base.domain.SysDept"
>
update sys_dept
<set>
<if
test=
"pid != null"
>
pid = #{pid,jdbcType=BIGINT},
</if>
<if
test=
"subCount != null"
>
sub_count = #{subCount,jdbcType=INTEGER},
</if>
<if
test=
"name != null"
>
`name` = #{name,jdbcType=VARCHAR},
</if>
<if
test=
"level != null"
>
`level` = #{level,jdbcType=INTEGER},
</if>
<if
test=
"deptSort != null"
>
dept_sort = #{deptSort,jdbcType=INTEGER},
</if>
<if
test=
"enabled != null"
>
enabled = #{enabled,jdbcType=BIT},
</if>
<if
test=
"createBy != null"
>
create_by = #{createBy,jdbcType=VARCHAR},
</if>
<if
test=
"updateBy != null"
>
update_by = #{updateBy,jdbcType=VARCHAR},
</if>
<if
test=
"createTime != null"
>
create_time = #{createTime,jdbcType=TIMESTAMP},
</if>
<if
test=
"updateTime != null"
>
update_time = #{updateTime,jdbcType=TIMESTAMP},
</if>
</set>
where dept_id = #{deptId,jdbcType=BIGINT}
</update>
<update
id=
"updateByPrimaryKey"
parameterType=
"io.dataease.base.domain.SysDept"
>
update sys_dept
set pid = #{pid,jdbcType=BIGINT},
sub_count = #{subCount,jdbcType=INTEGER},
`name` = #{name,jdbcType=VARCHAR},
`level` = #{level,jdbcType=INTEGER},
dept_sort = #{deptSort,jdbcType=INTEGER},
enabled = #{enabled,jdbcType=BIT},
create_by = #{createBy,jdbcType=VARCHAR},
update_by = #{updateBy,jdbcType=VARCHAR},
create_time = #{createTime,jdbcType=TIMESTAMP},
update_time = #{updateTime,jdbcType=TIMESTAMP}
where dept_id = #{deptId,jdbcType=BIGINT}
</update>
</mapper>
\ No newline at end of file
backend/src/main/java/io/dataease/controller/sys/SysDeptController.java
0 → 100644
浏览文件 @
3d143c86
package
io
.
dataease
.
controller
.
sys
;
import
io.dataease.base.domain.SysDept
;
import
io.dataease.service.sys.DeptService
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.ApiOperation
;
import
lombok.RequiredArgsConstructor
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RestController
;
import
javax.annotation.Resource
;
import
java.util.List
;
@RestController
@RequiredArgsConstructor
@Api
(
tags
=
"系统:部门管理"
)
@RequestMapping
(
"/api/dept"
)
public
class
SysDeptController
{
@Resource
private
DeptService
deptService
;
@ApiOperation
(
"查询部门"
)
@PostMapping
(
"/root"
)
public
List
<
SysDept
>
rootData
(){
List
<
SysDept
>
root
=
deptService
.
root
();
return
root
;
}
@ApiOperation
(
"新增部门"
)
@PostMapping
(
"/create"
)
public
void
create
(
@RequestBody
SysDept
dept
){
deptService
.
add
(
dept
);
}
}
backend/src/main/java/io/dataease/controller/sys/request/DeptCreateRequest.java
0 → 100644
浏览文件 @
3d143c86
package
io
.
dataease
.
controller
.
sys
.
request
;
public
class
DeptCreateRequest
{
}
backend/src/main/java/io/dataease/service/sys/DeptService.java
0 → 100644
浏览文件 @
3d143c86
package
io
.
dataease
.
service
.
sys
;
import
io.dataease.base.domain.SysDept
;
import
io.dataease.base.domain.SysDeptExample
;
import
io.dataease.base.mapper.SysDeptMapper
;
import
org.apache.commons.lang3.ObjectUtils
;
import
org.springframework.stereotype.Service
;
import
javax.annotation.Resource
;
import
java.util.Date
;
import
java.util.List
;
@Service
public
class
DeptService
{
private
final
static
Integer
DEPT_ROOT_LEVEL
=
0
;
@Resource
private
SysDeptMapper
sysDeptMapper
;
public
List
<
SysDept
>
root
(){
SysDeptExample
example
=
new
SysDeptExample
();
example
.
createCriteria
().
andLevelEqualTo
(
DEPT_ROOT_LEVEL
);
example
.
setOrderByClause
(
"dept_sort"
);
List
<
SysDept
>
sysDepts
=
sysDeptMapper
.
selectByExample
(
example
);
return
sysDepts
;
}
public
boolean
add
(
SysDept
sysDept
){
if
(
ObjectUtils
.
isEmpty
(
sysDept
.
getLevel
())){
sysDept
.
setLevel
(
DEPT_ROOT_LEVEL
);
}
Date
now
=
new
Date
();
sysDept
.
setCreateTime
(
now
);
sysDept
.
setUpdateTime
(
now
);
sysDept
.
setCreateBy
(
null
);
sysDept
.
setUpdateBy
(
null
);
try
{
int
insert
=
sysDeptMapper
.
insert
(
sysDept
);
if
(
insert
==
1
){
return
true
;
}
}
catch
(
Exception
e
){
return
false
;
}
return
false
;
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论