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
76242d4d
Commit
76242d4d
authored
Sep 05, 2019
by
dqjdda
Browse files
修复菜单查询数据重复的问题#112
parent
08597902
Changes
2
Hide whitespace changes
Inline
Side-by-side
eladmin-system/src/main/java/me/zhengjie/modules/system/service/dto/MenuSmallDTO.java
deleted
100644 → 0
View file @
08597902
package
me.zhengjie.modules.system.service.dto
;
import
lombok.Data
;
import
java.sql.Timestamp
;
import
java.util.List
;
/**
* @author Zheng Jie
* @date 2018-12-17
*/
@Data
public
class
MenuSmallDTO
{
private
Long
id
;
private
String
name
;
}
eladmin-system/src/main/java/me/zhengjie/modules/system/service/mapper/MenuSmallMapper.java
deleted
100644 → 0
View file @
08597902
package
me.zhengjie.modules.system.service.mapper
;
import
me.zhengjie.mapper.EntityMapper
;
import
me.zhengjie.modules.system.domain.Menu
;
import
me.zhengjie.modules.system.service.dto.MenuDTO
;
import
me.zhengjie.modules.system.service.dto.MenuSmallDTO
;
import
org.mapstruct.Mapper
;
import
org.mapstruct.ReportingPolicy
;
/**
* @author Zheng Jie
* @date 2018-12-17
*/
@Mapper
(
componentModel
=
"spring"
,
uses
=
{},
unmappedTargetPolicy
=
ReportingPolicy
.
IGNORE
)
public
interface
MenuSmallMapper
extends
EntityMapper
<
MenuSmallDTO
,
Menu
>
{
}
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