"vscode:/vscode.git/clone" did not exist on "e0378c3d1551f4b28bf3246dad7b8541e0aef0e0"
Commit 83dc7f8a authored by zhengjie's avatar zhengjie
Browse files

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

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