Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Z
znks
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
王夏晖
znks
Commits
dfdb31ad
Commit
dfdb31ad
authored
Nov 08, 2018
by
leyboy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2018/11/08,统计用户信息
parent
d8bebe64
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
0 deletions
+48
-0
UserCountVO.java
...da-main/src/main/java/com/adc/da/znks/vo/UserCountVO.java
+48
-0
No files found.
adc-da-main/src/main/java/com/adc/da/znks/vo/UserCountVO.java
0 → 100644
View file @
dfdb31ad
package
com
.
adc
.
da
.
znks
.
vo
;
import
java.util.List
;
/**
* 统计user的 VO
**/
public
class
UserCountVO
{
/**
* 客户数量
**/
private
Integer
userCount
;
/**
* 点击率
*/
private
Double
clickRate
;
/**
* 主要分布地区和时间
**/
List
<
MainDistributeVO
>
distributeVOS
;
public
Double
getClickRate
()
{
return
clickRate
;
}
public
void
setClickRate
(
Double
clickRate
)
{
this
.
clickRate
=
clickRate
;
}
public
List
<
MainDistributeVO
>
getDistributeVOS
()
{
return
distributeVOS
;
}
public
void
setDistributeVOS
(
List
<
MainDistributeVO
>
distributeVOS
)
{
this
.
distributeVOS
=
distributeVOS
;
}
public
Integer
getUserCount
()
{
return
userCount
;
}
public
void
setUserCount
(
Integer
userCount
)
{
this
.
userCount
=
userCount
;
}
}
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