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