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.*;
import java.util.List;
/**
* @author jie
* @author Zheng Jie
* @date 2018-12-03
*/
@RestController
......
......@@ -22,7 +22,7 @@ import java.util.List;
import java.util.stream.Collectors;
/**
* @author jie
* @author Zheng Jie
* @date 2018-12-03
*/
@RestController
......
......@@ -29,7 +29,7 @@ import java.util.*;
import java.util.stream.Collectors;
/**
* @author jie
* @author Zheng Jie
* @date 2018-11-23
*/
@RestController
......
......@@ -11,7 +11,7 @@ import java.util.List;
import java.util.Set;
/**
* @author jie
* @author Zheng Jie
* @date 2019-03-25
*/
@CacheConfig(cacheNames = "dept")
......
......@@ -9,7 +9,7 @@ import org.springframework.cache.annotation.Cacheable;
import org.springframework.data.domain.Pageable;
/**
* @author jie
* @author Zheng Jie
* @date 2019-04-10
*/
@CacheConfig(cacheNames = "dictDetail")
......
......@@ -8,7 +8,7 @@ import org.springframework.cache.annotation.Cacheable;
import org.springframework.data.domain.Pageable;
/**
* @author jie
* @author Zheng Jie
* @date 2019-04-10
*/
@CacheConfig(cacheNames = "dict")
......
......@@ -9,7 +9,7 @@ import org.springframework.cache.annotation.Cacheable;
import org.springframework.data.domain.Pageable;
/**
* @author jie
* @author Zheng Jie
* @date 2019-03-29
*/
@CacheConfig(cacheNames = "job")
......
......@@ -13,7 +13,7 @@ import java.util.Map;
import java.util.Set;
/**
* @author jie
* @author Zheng Jie
* @date 2018-12-17
*/
@CacheConfig(cacheNames = "menu")
......
......@@ -11,7 +11,7 @@ import java.util.Collection;
import java.util.List;
/**
* @author jie
* @author Zheng Jie
* @date 2018-12-08
*/
@CacheConfig(cacheNames = "permission")
......
......@@ -14,7 +14,7 @@ import java.util.List;
import java.util.Set;
/**
* @author jie
* @author Zheng Jie
* @date 2018-12-03
*/
@CacheConfig(cacheNames = "role")
......
......@@ -10,7 +10,7 @@ import org.springframework.cache.annotation.Cacheable;
import org.springframework.data.domain.Pageable;
/**
* @author jie
* @author Zheng Jie
* @date 2018-11-23
*/
@CacheConfig(cacheNames = "user")
......
......@@ -9,7 +9,7 @@ import java.io.Serializable;
import java.util.List;
/**
* @author jie
* @author Zheng Jie
* @date 2019-03-25
*/
@Data
......
......@@ -5,7 +5,7 @@ import me.zhengjie.annotation.Query;
import java.util.Set;
/**
* @author jie
* @author Zheng Jie
* @date 2019-03-25
*/
@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;
import java.io.Serializable;
/**
* @author jie
* @author Zheng Jie
* @date 2019-04-10
*/
@Data
......
......@@ -4,7 +4,7 @@ import lombok.Data;
import java.io.Serializable;
/**
* @author jie
* @author Zheng Jie
* @date 2019-04-10
*/
@Data
......
......@@ -4,7 +4,7 @@ import lombok.Data;
import me.zhengjie.annotation.Query;
/**
* @author jie
* @author Zheng Jie
* @date 2019-04-10
*/
@Data
......
......@@ -9,7 +9,7 @@ import java.sql.Timestamp;
import java.io.Serializable;
/**
* @author jie
* @author Zheng Jie
* @date 2019-03-29
*/
@Data
......
......@@ -9,7 +9,7 @@ import java.sql.Timestamp;
import java.util.Set;
/**
* @author jie
* @author Zheng Jie
* @date 2019-6-4 14:49:34
*/
@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