Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
Overview
Overview
Details
Activity
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
haoban3.0
haoban-manage3.0
Commits
5b93b355
Commit
5b93b355
authored
Jun 19, 2024
by
xiongjiangtao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
数据统计
parent
a241e180
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
91 additions
and
0 deletions
+91
-0
ChatDataController.java
.../gic/haoban/manage/web/controller/ChatDataController.java
+0
-0
SingleChatOverviewReq.java
.../gic/haoban/manage/web/qo/chat/SingleChatOverviewReq.java
+55
-0
SingleChatOverviewVO.java
...m/gic/haoban/manage/web/vo/chat/SingleChatOverviewVO.java
+36
-0
No files found.
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/controller/ChatDataController.java
0 → 100644
View file @
5b93b355
This diff is collapsed.
Click to expand it.
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/qo/chat/SingleChatOverviewReq.java
0 → 100644
View file @
5b93b355
package
com
.
gic
.
haoban
.
manage
.
web
.
qo
.
chat
;
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties
;
import
java.io.Serializable
;
/**
* @author shangfeng
* @date 2024-06-19 11:06:40
*/
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
class
SingleChatOverviewReq
implements
Serializable
{
private
static
final
long
serialVersionUID
=
6628775927884408876L
;
/**
* yyyy-MM-dd
*/
private
String
startDate
;
/**
* yyyy-MM-dd
*/
private
String
endDate
;
/**
* 分组ID,支持多选,英文逗号隔开
*/
private
String
storeGroupId
;
public
String
getStartDate
()
{
return
startDate
;
}
public
void
setStartDate
(
String
startDate
)
{
this
.
startDate
=
startDate
;
}
public
String
getEndDate
()
{
return
endDate
;
}
public
void
setEndDate
(
String
endDate
)
{
this
.
endDate
=
endDate
;
}
public
String
getStoreGroupId
()
{
return
storeGroupId
;
}
public
void
setStoreGroupId
(
String
storeGroupId
)
{
this
.
storeGroupId
=
storeGroupId
;
}
}
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/vo/chat/SingleChatOverviewVO.java
0 → 100644
View file @
5b93b355
package
com
.
gic
.
haoban
.
manage
.
web
.
vo
.
chat
;
import
java.io.Serializable
;
/**
* @author shangfeng
* @date 2024-06-19 11:10:32
*/
public
class
SingleChatOverviewVO
implements
Serializable
{
private
static
final
long
serialVersionUID
=
-
4576679591727859467L
;
/**
* 单向好友数
*/
private
Integer
onewayFriendNum
=
0
;
/**
* 总流失人数
*/
private
Integer
totalLostNum
=
0
;
/**
* 删除导购人数
*/
private
Integer
deleteSalesNum
=
0
;
/**
* 导购删除好友人数
*/
private
Integer
salesDeleteNum
=
0
;
/**
*
*/
private
String
bizDate
;
}
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