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
c7bb751d
Commit
c7bb751d
authored
Jul 26, 2024
by
guojx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
字段类型调整
parent
5dab8895
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
13 deletions
+14
-13
WechatWorkOverviewController.java
...b/controller/wechatwork/WechatWorkOverviewController.java
+1
-0
WechatWorkOverviewStoreGroupVO.java
...age/web/vo/wechatwork/WechatWorkOverviewStoreGroupVO.java
+6
-6
WechatWorkOverviewTrendVO.java
...n/manage/web/vo/wechatwork/WechatWorkOverviewTrendVO.java
+3
-3
WechatWorkOverviewVO.java
...haoban/manage/web/vo/wechatwork/WechatWorkOverviewVO.java
+4
-4
No files found.
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/controller/wechatwork/WechatWorkOverviewController.java
View file @
c7bb751d
...
...
@@ -91,6 +91,7 @@ public class WechatWorkOverviewController extends NewBaseController {
for
(
String
date
:
dateList
)
{
WechatWorkOverviewTrendVO
vo
=
map
.
get
(
date
);
if
(
vo
==
null
)
{
vo
=
new
WechatWorkOverviewTrendVO
();
vo
.
setBizDate
(
date
);
}
voList
.
add
(
vo
);
...
...
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/vo/wechatwork/WechatWorkOverviewStoreGroupVO.java
View file @
c7bb751d
...
...
@@ -14,30 +14,30 @@ public class WechatWorkOverviewStoreGroupVO extends StoreGroupCommonVO implement
/**
* 新增微信好友总数
*/
private
Long
newEntwchFdNumTotal
;
private
Integer
newEntwchFdNumTotal
;
/**
* 新增已注册微信好友数
*/
private
Long
newEntwchFdNumMbr
;
private
Integer
newEntwchFdNumMbr
;
/**
* 新增未注册微信好友数
*/
private
Long
newEntwchFdNumNonmbr
;
private
Integer
newEntwchFdNumNonmbr
;
/**
* 微信好友总数
*/
private
Long
entwchFdNumTotal
;
private
Integer
entwchFdNumTotal
;
/**
* 已注册微信好友数
*/
private
Long
entwchFdNumMbr
;
private
Integer
entwchFdNumMbr
;
/**
* 未注册微信好友数
*/
private
Long
entwchFdNumNonmbr
;
private
Integer
entwchFdNumNonmbr
;
}
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/vo/wechatwork/WechatWorkOverviewTrendVO.java
View file @
c7bb751d
...
...
@@ -14,17 +14,17 @@ public class WechatWorkOverviewTrendVO implements Serializable {
/**
* 微信好友总数
*/
private
Long
newEntwchFdNumTotal
;
private
Integer
newEntwchFdNumTotal
;
/**
* 已注册微信好友数
*/
private
Long
newEntwchFdNumMbr
;
private
Integer
newEntwchFdNumMbr
;
/**
* 未注册微信好友数
*/
private
Long
newEntwchFdNumNonmbr
;
private
Integer
newEntwchFdNumNonmbr
;
private
String
bizDate
;
}
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/vo/wechatwork/WechatWorkOverviewVO.java
View file @
c7bb751d
...
...
@@ -16,17 +16,17 @@ public class WechatWorkOverviewVO implements Serializable {
/**
* 微信好友总数
*/
private
Long
entwchFdNumTotal
;
private
Integer
entwchFdNumTotal
;
/**
* 已注册微信好友数
*/
private
Long
entwchFdNumMbr
;
private
Integer
entwchFdNumMbr
;
/**
* 未注册微信好友数
*/
private
Long
entwchFdNumNonmbr
;
private
Integer
entwchFdNumNonmbr
;
/**
* 已注册微信好友数占比
...
...
@@ -52,7 +52,7 @@ public class WechatWorkOverviewVO implements Serializable {
* @param degree
* @return
*/
public
static
Double
rate
(
Long
divisor
,
Long
dividend
,
int
degree
){
public
static
Double
rate
(
Integer
divisor
,
Integer
dividend
,
int
degree
){
if
(
Objects
.
isNull
(
divisor
)
||
Objects
.
isNull
(
dividend
)
||
dividend
==
0
){
return
0.00
;
}
...
...
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