Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
platform
/
finance_serv
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit c6433d9d
authored
Aug 02, 2018
by
王军业
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
【resultVo】
1 parent
c40c3002
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
code/finance_serv/src/main/java/com/vion/financial/vo/ResultVo.java
code/finance_serv/src/main/java/com/vion/financial/vo/ResultVo.java
0 → 100644
View file @
c6433d9
package
com
.
vion
.
financial
.
vo
;
import
java.util.List
;
import
com.fasterxml.jackson.annotation.JsonInclude
;
import
com.fasterxml.jackson.annotation.JsonInclude.Include
;
@JsonInclude
(
value
=
Include
.
NON_NULL
)
public
class
ResultVo
{
private
Integer
total_number
;
private
Integer
list_size
;
private
Integer
offset
;
List
<
ContractVo
>
list_data
;
public
Integer
getTotal_number
()
{
return
total_number
;
}
public
void
setTotal_number
(
Integer
total_number
)
{
this
.
total_number
=
total_number
;
}
public
Integer
getList_size
()
{
return
list_size
;
}
public
void
setList_size
(
Integer
list_size
)
{
this
.
list_size
=
list_size
;
}
public
Integer
getOffset
()
{
return
offset
;
}
public
void
setOffset
(
Integer
offset
)
{
this
.
offset
=
offset
;
}
public
List
<
ContractVo
>
getList_data
()
{
return
list_data
;
}
public
void
setList_data
(
List
<
ContractVo
>
list_data
)
{
this
.
list_data
=
list_data
;
}
}
Write
Preview
Markdown
is supported
Attach a file
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 post a comment