Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
roo-cloud
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
万敏
roo-cloud
Commits
e765d29c
Commit
e765d29c
authored
Aug 04, 2021
by
wanmin@bu2.cn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bannerDTO
parent
80e927b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
0 deletions
+38
-0
roo-admin/roo-admin-client/src/main/java/com/roo/dto/BannerDTO.java
...roo-admin-client/src/main/java/com/roo/dto/BannerDTO.java
+38
-0
No files found.
roo-admin/roo-admin-client/src/main/java/com/roo/dto/BannerDTO.java
0 → 100644
View file @
e765d29c
package
com.roo.dto
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
java.io.Serializable
;
import
java.util.Date
;
/**
* banner图
*
* @author momin 460363410@qq.com
* @since 1.0 2021-08-02
*/
@Data
@ApiModel
(
value
=
"banner图"
)
public
class
BannerDTO
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
@ApiModelProperty
(
value
=
"主键"
)
private
Long
id
;
@ApiModelProperty
(
value
=
"图片地址"
)
private
String
image
;
@ApiModelProperty
(
value
=
"超链接地址"
)
private
String
href
;
@ApiModelProperty
(
value
=
"类型:1=dapp"
)
private
Integer
type
;
@ApiModelProperty
(
value
=
"排序,正序"
)
private
Integer
sort
;
@ApiModelProperty
(
value
=
"是否启用"
)
private
Boolean
isEnabled
;
@ApiModelProperty
(
value
=
"创建时间"
)
private
Date
createDate
;
@ApiModelProperty
(
value
=
"更新时间"
)
private
Date
updateDate
;
}
\ No newline at end of file
Write
Preview
Markdown
is supported
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