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

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

parent c01435a0
......@@ -7,7 +7,7 @@ import org.mapstruct.Mapper;
import org.mapstruct.ReportingPolicy;
/**
* @author jie
* @author Zheng Jie
* @date 2018-11-23
*/
@Mapper(componentModel = "spring",unmappedTargetPolicy = ReportingPolicy.IGNORE)
......
......@@ -7,7 +7,7 @@ import org.mapstruct.Mapper;
import org.mapstruct.ReportingPolicy;
/**
* @author jie
* @author Zheng Jie
* @date 2018-11-23
*/
@Mapper(componentModel = "spring", uses = {PermissionMapper.class, MenuMapper.class, DeptMapper.class}, unmappedTargetPolicy = ReportingPolicy.IGNORE)
......
......@@ -8,7 +8,7 @@ import org.mapstruct.Mapper;
import org.mapstruct.ReportingPolicy;
/**
* @author jie
* @author Zheng Jie
* @date 2019-5-23
*/
@Mapper(componentModel = "spring", uses = {}, unmappedTargetPolicy = ReportingPolicy.IGNORE)
......
......@@ -7,7 +7,7 @@ import org.mapstruct.Mapper;
import org.mapstruct.ReportingPolicy;
/**
* @author jie
* @author Zheng Jie
* @date 2018-11-23
*/
@Mapper(componentModel = "spring",uses = {RoleMapper.class, DeptMapper.class, JobMapper.class},unmappedTargetPolicy = ReportingPolicy.IGNORE)
......
......@@ -7,7 +7,7 @@ import java.io.Serializable;
/**
* 支付宝配置类
* @author jie
* @author Zheng Jie
* @date 2018-12-31
*/
@Data
......
......@@ -8,7 +8,7 @@ import java.io.Serializable;
/**
* 邮件配置类,数据存覆盖式存入数据存
* @author jie
* @author Zheng Jie
* @date 2018-12-26
*/
@Entity
......
......@@ -10,7 +10,7 @@ import java.sql.Timestamp;
/**
* sm.ms图床
*
* @author jie
* @author Zheng Jie
* @date 2018-12-27
*/
@Data
......
......@@ -7,7 +7,7 @@ import java.io.Serializable;
/**
* 七牛云对象存储配置类
* @author jie
* @author Zheng Jie
* @date 2018-12-31
*/
@Data
......
......@@ -9,7 +9,7 @@ import java.sql.Timestamp;
/**
* 上传成功后,存储结果
* @author jie
* @author Zheng Jie
* @date 2018-12-31
*/
@Data
......
......@@ -10,7 +10,7 @@ import javax.validation.constraints.NotBlank;
import java.sql.Timestamp;
/**
* @author jie
* @author Zheng Jie
* @date 2018-12-26
*/
@Data
......
......@@ -9,7 +9,7 @@ import java.sql.Timestamp;
/**
* 交易详情,按需应该存入数据库,这里存入数据库,仅供临时测试
* @author jie
* @author Zheng Jie
* @date 2018-12-31
*/
@Data
......
......@@ -4,7 +4,7 @@ import me.zhengjie.domain.AlipayConfig;
import org.springframework.data.jpa.repository.JpaRepository;
/**
* @author jie
* @author Zheng Jie
* @date 2018-12-31
*/
public interface AlipayRepository extends JpaRepository<AlipayConfig,Long> {
......
......@@ -4,7 +4,7 @@ import me.zhengjie.domain.EmailConfig;
import org.springframework.data.jpa.repository.JpaRepository;
/**
* @author jie
* @author Zheng Jie
* @date 2018-12-26
*/
public interface EmailRepository extends JpaRepository<EmailConfig,Long> {
......
......@@ -5,7 +5,7 @@ import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
/**
* @author jie
* @author Zheng Jie
* @date 2018-12-27
*/
public interface PictureRepository extends JpaRepository<Picture,Long>, JpaSpecificationExecutor {
......
......@@ -4,7 +4,7 @@ import me.zhengjie.domain.QiniuConfig;
import org.springframework.data.jpa.repository.JpaRepository;
/**
* @author jie
* @author Zheng Jie
* @date 2018-12-31
*/
public interface QiNiuConfigRepository extends JpaRepository<QiniuConfig,Long> {
......
......@@ -5,7 +5,7 @@ import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
/**
* @author jie
* @author Zheng Jie
* @date 2018-12-31
*/
public interface QiniuContentRepository extends JpaRepository<QiniuContent,Long>, JpaSpecificationExecutor {
......
......@@ -4,7 +4,7 @@ import me.zhengjie.domain.VerificationCode;
import org.springframework.data.jpa.repository.JpaRepository;
/**
* @author jie
* @author Zheng Jie
* @date 2018-12-26
*/
public interface VerificationCodeRepository extends JpaRepository<VerificationCode, Long> {
......
......@@ -19,7 +19,7 @@ import javax.servlet.http.HttpServletResponse;
import java.util.Map;
/**
* @author jie
* @author Zheng Jie
* @date 2018-12-31
*/
@Slf4j
......
......@@ -13,7 +13,7 @@ import org.springframework.security.core.userdetails.UserDetailsService;
import org.springframework.web.bind.annotation.*;
/**
* @author jie
* @author Zheng Jie
* @date 2018-12-26
*/
@RestController
......
......@@ -7,7 +7,7 @@ import org.springframework.cache.annotation.CachePut;
import org.springframework.cache.annotation.Cacheable;
/**
* @author jie
* @author Zheng Jie
* @date 2018-12-31
*/
@CacheConfig(cacheNames = "alipay")
......
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