Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Eladmin
Commits
83dc7f8a
Commit
83dc7f8a
authored
Jun 10, 2019
by
zhengjie
Browse files
优化user列表中的岗位DTO,修改@author信息,新增验证码登录
parent
c01435a0
Changes
172
Hide whitespace changes
Inline
Side-by-side
eladmin-system/src/main/java/me/zhengjie/modules/system/rest/PermissionController.java
View file @
83dc7f8a
...
...
@@ -16,7 +16,7 @@ import org.springframework.web.bind.annotation.*;
import
java.util.List
;
/**
* @author
j
ie
* @author
Zheng J
ie
* @date 2018-12-03
*/
@RestController
...
...
eladmin-system/src/main/java/me/zhengjie/modules/system/rest/RoleController.java
View file @
83dc7f8a
...
...
@@ -22,7 +22,7 @@ import java.util.List;
import
java.util.stream.Collectors
;
/**
* @author
j
ie
* @author
Zheng J
ie
* @date 2018-12-03
*/
@RestController
...
...
eladmin-system/src/main/java/me/zhengjie/modules/system/rest/UserController.java
View file @
83dc7f8a
...
...
@@ -29,7 +29,7 @@ import java.util.*;
import
java.util.stream.Collectors
;
/**
* @author
j
ie
* @author
Zheng J
ie
* @date 2018-11-23
*/
@RestController
...
...
eladmin-system/src/main/java/me/zhengjie/modules/system/service/DeptService.java
View file @
83dc7f8a
...
...
@@ -11,7 +11,7 @@ import java.util.List;
import
java.util.Set
;
/**
* @author
j
ie
* @author
Zheng J
ie
* @date 2019-03-25
*/
@CacheConfig
(
cacheNames
=
"dept"
)
...
...
eladmin-system/src/main/java/me/zhengjie/modules/system/service/DictDetailService.java
View file @
83dc7f8a
...
...
@@ -9,7 +9,7 @@ import org.springframework.cache.annotation.Cacheable;
import
org.springframework.data.domain.Pageable
;
/**
* @author
j
ie
* @author
Zheng J
ie
* @date 2019-04-10
*/
@CacheConfig
(
cacheNames
=
"dictDetail"
)
...
...
eladmin-system/src/main/java/me/zhengjie/modules/system/service/DictService.java
View file @
83dc7f8a
...
...
@@ -8,7 +8,7 @@ import org.springframework.cache.annotation.Cacheable;
import
org.springframework.data.domain.Pageable
;
/**
* @author
j
ie
* @author
Zheng J
ie
* @date 2019-04-10
*/
@CacheConfig
(
cacheNames
=
"dict"
)
...
...
eladmin-system/src/main/java/me/zhengjie/modules/system/service/JobService.java
View file @
83dc7f8a
...
...
@@ -9,7 +9,7 @@ import org.springframework.cache.annotation.Cacheable;
import
org.springframework.data.domain.Pageable
;
/**
* @author
j
ie
* @author
Zheng J
ie
* @date 2019-03-29
*/
@CacheConfig
(
cacheNames
=
"job"
)
...
...
eladmin-system/src/main/java/me/zhengjie/modules/system/service/MenuService.java
View file @
83dc7f8a
...
...
@@ -13,7 +13,7 @@ import java.util.Map;
import
java.util.Set
;
/**
* @author
j
ie
* @author
Zheng J
ie
* @date 2018-12-17
*/
@CacheConfig
(
cacheNames
=
"menu"
)
...
...
eladmin-system/src/main/java/me/zhengjie/modules/system/service/PermissionService.java
View file @
83dc7f8a
...
...
@@ -11,7 +11,7 @@ import java.util.Collection;
import
java.util.List
;
/**
* @author
j
ie
* @author
Zheng J
ie
* @date 2018-12-08
*/
@CacheConfig
(
cacheNames
=
"permission"
)
...
...
eladmin-system/src/main/java/me/zhengjie/modules/system/service/RoleService.java
View file @
83dc7f8a
...
...
@@ -14,7 +14,7 @@ import java.util.List;
import
java.util.Set
;
/**
* @author
j
ie
* @author
Zheng J
ie
* @date 2018-12-03
*/
@CacheConfig
(
cacheNames
=
"role"
)
...
...
eladmin-system/src/main/java/me/zhengjie/modules/system/service/UserService.java
View file @
83dc7f8a
...
...
@@ -10,7 +10,7 @@ import org.springframework.cache.annotation.Cacheable;
import
org.springframework.data.domain.Pageable
;
/**
* @author
j
ie
* @author
Zheng J
ie
* @date 2018-11-23
*/
@CacheConfig
(
cacheNames
=
"user"
)
...
...
eladmin-system/src/main/java/me/zhengjie/modules/system/service/dto/DeptDTO.java
View file @
83dc7f8a
...
...
@@ -9,7 +9,7 @@ import java.io.Serializable;
import
java.util.List
;
/**
* @author
j
ie
* @author
Zheng J
ie
* @date 2019-03-25
*/
@Data
...
...
eladmin-system/src/main/java/me/zhengjie/modules/system/service/dto/DeptQueryCriteria.java
View file @
83dc7f8a
...
...
@@ -5,7 +5,7 @@ import me.zhengjie.annotation.Query;
import
java.util.Set
;
/**
* @author
j
ie
* @author
Zheng J
ie
* @date 2019-03-25
*/
@Data
...
...
eladmin-system/src/main/java/me/zhengjie/modules/system/service/dto/DeptSmallDTO.java
0 → 100644
View file @
83dc7f8a
package
me.zhengjie.modules.system.service.dto
;
import
lombok.Data
;
import
java.io.Serializable
;
/**
* @author Zheng Jie
* @date 2019-6-10 16:32:18
*/
@Data
public
class
DeptSmallDTO
implements
Serializable
{
/**
* ID
*/
private
Long
id
;
/**
* 名称
*/
private
String
name
;
}
\ No newline at end of file
eladmin-system/src/main/java/me/zhengjie/modules/system/service/dto/DictDTO.java
View file @
83dc7f8a
...
...
@@ -6,7 +6,7 @@ import me.zhengjie.annotation.Query;
import
java.io.Serializable
;
/**
* @author
j
ie
* @author
Zheng J
ie
* @date 2019-04-10
*/
@Data
...
...
eladmin-system/src/main/java/me/zhengjie/modules/system/service/dto/DictDetailDTO.java
View file @
83dc7f8a
...
...
@@ -4,7 +4,7 @@ import lombok.Data;
import
java.io.Serializable
;
/**
* @author
j
ie
* @author
Zheng J
ie
* @date 2019-04-10
*/
@Data
...
...
eladmin-system/src/main/java/me/zhengjie/modules/system/service/dto/DictDetailQueryCriteria.java
View file @
83dc7f8a
...
...
@@ -4,7 +4,7 @@ import lombok.Data;
import
me.zhengjie.annotation.Query
;
/**
* @author
j
ie
* @author
Zheng J
ie
* @date 2019-04-10
*/
@Data
...
...
eladmin-system/src/main/java/me/zhengjie/modules/system/service/dto/JobDTO.java
View file @
83dc7f8a
...
...
@@ -9,7 +9,7 @@ import java.sql.Timestamp;
import
java.io.Serializable
;
/**
* @author
j
ie
* @author
Zheng J
ie
* @date 2019-03-29
*/
@Data
...
...
eladmin-system/src/main/java/me/zhengjie/modules/system/service/dto/JobQueryCriteria.java
View file @
83dc7f8a
...
...
@@ -9,7 +9,7 @@ import java.sql.Timestamp;
import
java.util.Set
;
/**
* @author
j
ie
* @author
Zheng J
ie
* @date 2019-6-4 14:49:34
*/
@Data
...
...
eladmin-system/src/main/java/me/zhengjie/modules/system/service/dto/JobSmallDTO.java
0 → 100644
View file @
83dc7f8a
package
me.zhengjie.modules.system.service.dto
;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
import
java.io.Serializable
;
/**
* @author Zheng Jie
* @date 2019-6-10 16:32:18
*/
@Data
@NoArgsConstructor
public
class
JobSmallDTO
implements
Serializable
{
/**
* ID
*/
private
Long
id
;
/**
* 名称
*/
private
String
name
;
}
\ No newline at end of file
Prev
1
2
3
4
5
6
7
8
9
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment