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
54a88416
Commit
54a88416
authored
Jun 20, 2024
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
企微操作日志
parent
0353a54b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
39 additions
and
2 deletions
+39
-2
QywxOpenController.java
...haoban/manage/web/controller/open/QywxOpenController.java
+0
-0
QywxOpenTaskController.java
...an/manage/web/controller/open/QywxOpenTaskController.java
+2
-2
OpenQwAccountInfoVO.java
...om/gic/haoban/manage/web/vo/open/OpenQwAccountInfoVO.java
+37
-0
No files found.
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/controller/open/QywxOpenController.java
View file @
54a88416
This diff is collapsed.
Click to expand it.
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/controller/open/QywxOpenTaskController.java
View file @
54a88416
...
...
@@ -399,8 +399,8 @@ public class QywxOpenTaskController {
logContent3
=
this
.
addListForLog
(
n1
,
n2
,
n3
);
}
String
logContent4
=
this
.
storeLog
(
oldDTO
.
getMainStoreJson
(),
dto
.
getMainStoreJson
(),
"服务门店"
);
String
logContent5
=
this
.
storeLog
(
oldDTO
.
get
MainStoreJson
(),
dto
.
getMain
StoreJson
(),
"协管门店"
);
String
logContent6
=
this
.
storeLog
(
oldDTO
.
get
MainStoreJson
(),
dto
.
getMai
nStoreJson
(),
"指定门店"
);
String
logContent5
=
this
.
storeLog
(
oldDTO
.
get
OtherStoreJson
(),
dto
.
getOther
StoreJson
(),
"协管门店"
);
String
logContent6
=
this
.
storeLog
(
oldDTO
.
get
AssignStoreJson
(),
dto
.
getAssig
nStoreJson
(),
"指定门店"
);
String
logContent
=
this
.
addListForLog
(
logContent1
,
logContent2
,
logContent3
,
logContent4
,
logContent5
,
logContent6
);
if
(
StringUtils
.
isNotBlank
(
logContent
))
{
GicLogRecordEvaluationContext
.
putAttribute
(
"logValue"
,
logContent
);
...
...
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/vo/open/OpenQwAccountInfoVO.java
0 → 100644
View file @
54a88416
package
com
.
gic
.
haoban
.
manage
.
web
.
vo
.
open
;
import
com.gic.haoban.manage.api.dto.OpenStaffLicenseDTO
;
import
java.io.Serializable
;
import
java.util.Date
;
/**
* 托管账号信息
*/
public
class
OpenQwAccountInfoVO
extends
OpenStaffLicenseDTO
implements
Serializable
{
// 0为购买 1已购买且有效 2已过期
private
int
status
;
/**
* 到期时间
*/
private
Date
expireDate
;
public
int
getStatus
()
{
return
status
;
}
public
void
setStatus
(
int
status
)
{
this
.
status
=
status
;
}
public
Date
getExpireDate
()
{
return
expireDate
;
}
public
void
setExpireDate
(
Date
expireDate
)
{
this
.
expireDate
=
expireDate
;
}
}
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