Commit 83dc7f8a authored by zhengjie's avatar zhengjie
Browse files

优化user列表中的岗位DTO,修改@author信息,新增验证码登录

parent c01435a0
...@@ -16,7 +16,7 @@ import org.springframework.web.bind.annotation.*; ...@@ -16,7 +16,7 @@ import org.springframework.web.bind.annotation.*;
import java.util.List; import java.util.List;
/** /**
* @author jie * @author Zheng Jie
* @date 2018-12-03 * @date 2018-12-03
*/ */
@RestController @RestController
......
...@@ -22,7 +22,7 @@ import java.util.List; ...@@ -22,7 +22,7 @@ import java.util.List;
import java.util.stream.Collectors; import java.util.stream.Collectors;
/** /**
* @author jie * @author Zheng Jie
* @date 2018-12-03 * @date 2018-12-03
*/ */
@RestController @RestController
......
...@@ -29,7 +29,7 @@ import java.util.*; ...@@ -29,7 +29,7 @@ import java.util.*;
import java.util.stream.Collectors; import java.util.stream.Collectors;
/** /**
* @author jie * @author Zheng Jie
* @date 2018-11-23 * @date 2018-11-23
*/ */
@RestController @RestController
......
...@@ -11,7 +11,7 @@ import java.util.List; ...@@ -11,7 +11,7 @@ import java.util.List;
import java.util.Set; import java.util.Set;
/** /**
* @author jie * @author Zheng Jie
* @date 2019-03-25 * @date 2019-03-25
*/ */
@CacheConfig(cacheNames = "dept") @CacheConfig(cacheNames = "dept")
......
...@@ -9,7 +9,7 @@ import org.springframework.cache.annotation.Cacheable; ...@@ -9,7 +9,7 @@ import org.springframework.cache.annotation.Cacheable;
import org.springframework.data.domain.Pageable; import org.springframework.data.domain.Pageable;
/** /**
* @author jie * @author Zheng Jie
* @date 2019-04-10 * @date 2019-04-10
*/ */
@CacheConfig(cacheNames = "dictDetail") @CacheConfig(cacheNames = "dictDetail")
......
...@@ -8,7 +8,7 @@ import org.springframework.cache.annotation.Cacheable; ...@@ -8,7 +8,7 @@ import org.springframework.cache.annotation.Cacheable;
import org.springframework.data.domain.Pageable; import org.springframework.data.domain.Pageable;
/** /**
* @author jie * @author Zheng Jie
* @date 2019-04-10 * @date 2019-04-10
*/ */
@CacheConfig(cacheNames = "dict") @CacheConfig(cacheNames = "dict")
......
...@@ -9,7 +9,7 @@ import org.springframework.cache.annotation.Cacheable; ...@@ -9,7 +9,7 @@ import org.springframework.cache.annotation.Cacheable;
import org.springframework.data.domain.Pageable; import org.springframework.data.domain.Pageable;
/** /**
* @author jie * @author Zheng Jie
* @date 2019-03-29 * @date 2019-03-29
*/ */
@CacheConfig(cacheNames = "job") @CacheConfig(cacheNames = "job")
......
...@@ -13,7 +13,7 @@ import java.util.Map; ...@@ -13,7 +13,7 @@ import java.util.Map;
import java.util.Set; import java.util.Set;
/** /**
* @author jie * @author Zheng Jie
* @date 2018-12-17 * @date 2018-12-17
*/ */
@CacheConfig(cacheNames = "menu") @CacheConfig(cacheNames = "menu")
......
...@@ -11,7 +11,7 @@ import java.util.Collection; ...@@ -11,7 +11,7 @@ import java.util.Collection;
import java.util.List; import java.util.List;
/** /**
* @author jie * @author Zheng Jie
* @date 2018-12-08 * @date 2018-12-08
*/ */
@CacheConfig(cacheNames = "permission") @CacheConfig(cacheNames = "permission")
......
...@@ -14,7 +14,7 @@ import java.util.List; ...@@ -14,7 +14,7 @@ import java.util.List;
import java.util.Set; import java.util.Set;
/** /**
* @author jie * @author Zheng Jie
* @date 2018-12-03 * @date 2018-12-03
*/ */
@CacheConfig(cacheNames = "role") @CacheConfig(cacheNames = "role")
......
...@@ -10,7 +10,7 @@ import org.springframework.cache.annotation.Cacheable; ...@@ -10,7 +10,7 @@ import org.springframework.cache.annotation.Cacheable;
import org.springframework.data.domain.Pageable; import org.springframework.data.domain.Pageable;
/** /**
* @author jie * @author Zheng Jie
* @date 2018-11-23 * @date 2018-11-23
*/ */
@CacheConfig(cacheNames = "user") @CacheConfig(cacheNames = "user")
......
...@@ -9,7 +9,7 @@ import java.io.Serializable; ...@@ -9,7 +9,7 @@ import java.io.Serializable;
import java.util.List; import java.util.List;
/** /**
* @author jie * @author Zheng Jie
* @date 2019-03-25 * @date 2019-03-25
*/ */
@Data @Data
......
...@@ -5,7 +5,7 @@ import me.zhengjie.annotation.Query; ...@@ -5,7 +5,7 @@ import me.zhengjie.annotation.Query;
import java.util.Set; import java.util.Set;
/** /**
* @author jie * @author Zheng Jie
* @date 2019-03-25 * @date 2019-03-25
*/ */
@Data @Data
......
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
...@@ -6,7 +6,7 @@ import me.zhengjie.annotation.Query; ...@@ -6,7 +6,7 @@ import me.zhengjie.annotation.Query;
import java.io.Serializable; import java.io.Serializable;
/** /**
* @author jie * @author Zheng Jie
* @date 2019-04-10 * @date 2019-04-10
*/ */
@Data @Data
......
...@@ -4,7 +4,7 @@ import lombok.Data; ...@@ -4,7 +4,7 @@ import lombok.Data;
import java.io.Serializable; import java.io.Serializable;
/** /**
* @author jie * @author Zheng Jie
* @date 2019-04-10 * @date 2019-04-10
*/ */
@Data @Data
......
...@@ -4,7 +4,7 @@ import lombok.Data; ...@@ -4,7 +4,7 @@ import lombok.Data;
import me.zhengjie.annotation.Query; import me.zhengjie.annotation.Query;
/** /**
* @author jie * @author Zheng Jie
* @date 2019-04-10 * @date 2019-04-10
*/ */
@Data @Data
......
...@@ -9,7 +9,7 @@ import java.sql.Timestamp; ...@@ -9,7 +9,7 @@ import java.sql.Timestamp;
import java.io.Serializable; import java.io.Serializable;
/** /**
* @author jie * @author Zheng Jie
* @date 2019-03-29 * @date 2019-03-29
*/ */
@Data @Data
......
...@@ -9,7 +9,7 @@ import java.sql.Timestamp; ...@@ -9,7 +9,7 @@ import java.sql.Timestamp;
import java.util.Set; import java.util.Set;
/** /**
* @author jie * @author Zheng Jie
* @date 2019-6-4 14:49:34 * @date 2019-6-4 14:49:34
*/ */
@Data @Data
......
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
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment