Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
refined-platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
refined-platform
Commits
4d208200
Commit
4d208200
authored
May 22, 2023
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加定时删除七天前的人流数据
parent
96e7fe92
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
refined-manager/src/main/java/com/mortals/xhx/busiz/req/SmsThirdPartyReq.java
...main/java/com/mortals/xhx/busiz/req/SmsThirdPartyReq.java
+1
-1
refined-manager/src/main/java/com/mortals/xhx/module/care/service/impl/CareRecordsServiceImpl.java
.../xhx/module/care/service/impl/CareRecordsServiceImpl.java
+1
-1
No files found.
refined-manager/src/main/java/com/mortals/xhx/busiz/req/SmsThirdPartyReq.java
View file @
4d208200
...
@@ -35,7 +35,7 @@ public class SmsThirdPartyReq {
...
@@ -35,7 +35,7 @@ public class SmsThirdPartyReq {
/**
/**
* 内容
* 内容
*/
*/
private
JSONArray
json
;
private
String
json
;
public
static
void
main
(
String
[]
args
)
{
public
static
void
main
(
String
[]
args
)
{
...
...
refined-manager/src/main/java/com/mortals/xhx/module/care/service/impl/CareRecordsServiceImpl.java
View file @
4d208200
...
@@ -118,7 +118,7 @@ public class CareRecordsServiceImpl extends AbstractCRUDServiceImpl<CareRecordsD
...
@@ -118,7 +118,7 @@ public class CareRecordsServiceImpl extends AbstractCRUDServiceImpl<CareRecordsD
smsThirdPartyReq
.
setAppid
(
apiId
);
smsThirdPartyReq
.
setAppid
(
apiId
);
smsThirdPartyReq
.
setPhone
(
careRecordsEntity
.
getContact
());
smsThirdPartyReq
.
setPhone
(
careRecordsEntity
.
getContact
());
smsThirdPartyReq
.
setType
(
ParamKey
.
SYS_PARAM_SMS_PERSON_CARE_TYPE
);
smsThirdPartyReq
.
setType
(
ParamKey
.
SYS_PARAM_SMS_PERSON_CARE_TYPE
);
smsThirdPartyReq
.
setJson
(
new
JSONArray
()
);
smsThirdPartyReq
.
setJson
(
"[]"
);
Map
<
String
,
Object
>
form
=
BeanUtil
.
beanToMap
(
smsThirdPartyReq
,
false
,
true
);
Map
<
String
,
Object
>
form
=
BeanUtil
.
beanToMap
(
smsThirdPartyReq
,
false
,
true
);
log
.
info
(
"sms req sendUrl:{} params:{}"
,
smsSendUrl
,
JSON
.
toJSONString
(
form
));
log
.
info
(
"sms req sendUrl:{} params:{}"
,
smsSendUrl
,
JSON
.
toJSONString
(
form
));
...
...
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