Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
youjj
cloud-platform
Commits
70f6a70f
Commit
70f6a70f
authored
Jun 18, 2019
by
libin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wg
parent
88463b20
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
54 additions
and
0 deletions
+54
-0
VehicleUserScoreListDTO.java
...fc/platform/vehicle/pojo/dto/VehicleUserScoreListDTO.java
+54
-0
No files found.
xx-vehicle/xx-vehicle-api/src/main/java/com/xxfc/platform/vehicle/pojo/dto/VehicleUserScoreListDTO.java
0 → 100644
View file @
70f6a70f
package
com
.
xxfc
.
platform
.
vehicle
.
pojo
.
dto
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
java.util.List
;
/**
* @author libin
* @version 1.0
* @description 车型评分
* @data 2019/6/18 15:15
*/
@Data
public
class
VehicleUserScoreListDTO
{
/**
* 用户id
*/
@ApiModelProperty
(
value
=
"用户id"
)
private
Integer
userId
;
/**
* 评价分
*/
@ApiModelProperty
(
value
=
"评价分"
)
private
Integer
aveScore
;
/**
* 是否匿名;0-否;1-是
*/
@ApiModelProperty
(
value
=
"是否匿名;0-否;1-是"
)
private
Integer
isAnony
;
/**
* 评价
*/
@ApiModelProperty
(
value
=
"评价"
)
private
String
comment
;
/**
* 图片
*/
@ApiModelProperty
(
value
=
"图片"
)
private
String
imgs
;
/**
* 创建时间
*/
@ApiModelProperty
(
value
=
"创建时间"
,
hidden
=
true
)
private
Long
crtTime
;
}
\ 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