Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
涂亚平
/
subsidy
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit ac283de3
authored
Jun 06, 2023
by
涂亚平
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
补贴培训第3次上课熬夜改数据
1 parent
b9001907
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
48 deletions
src/main/java/com/subsidy/service/impl/RenSheJuServiceImpl.java
src/main/java/com/subsidy/service/impl/VodPlayHistoryServiceImpl.java
src/main/java/com/subsidy/service/impl/RenSheJuServiceImpl.java
View file @
ac283de
...
@@ -102,26 +102,26 @@ public class RenSheJuServiceImpl implements RenSheJuService {
...
@@ -102,26 +102,26 @@ public class RenSheJuServiceImpl implements RenSheJuService {
System
.
out
.
println
(
JSONObject
.
fromObject
(
classBaseInfoDTO
).
toString
());
System
.
out
.
println
(
JSONObject
.
fromObject
(
classBaseInfoDTO
).
toString
());
RequestBody
body
=
RequestBody
.
create
(
mediaType
,
JSONObject
.
fromObject
(
classBaseInfoDTO
).
toString
());
//
RequestBody body = RequestBody.create(mediaType, JSONObject.fromObject(classBaseInfoDTO).toString());
Request
request
=
new
Request
.
Builder
()
//
Request request = new Request.Builder()
.
url
(
renSheConfig
.
getUrl
()
+
"/import/downstream/enterprise/uploadClass"
)
//
.url(renSheConfig.getUrl() + "/import/downstream/enterprise/uploadClass")
.
method
(
"POST"
,
body
)
//
.method("POST", body)
.
addHeader
(
"User-Agent"
,
"Apifox/1.0.0 (https://www.apifox.cn)"
)
//
.addHeader("User-Agent", "Apifox/1.0.0 (https://www.apifox.cn)")
.
addHeader
(
"Content-Type"
,
"application/json"
)
//
.addHeader("Content-Type", "application/json")
.
build
();
//
.build();
Response
response
=
client
.
newCall
(
request
).
execute
();
//
Response response = client.newCall(request).execute();
//
RensheResponseVO
rensheResponseVO
=
JSON
.
parseObject
(
response
.
body
().
string
(),
RensheResponseVO
.
class
);
//
RensheResponseVO rensheResponseVO = JSON.parseObject(response.body().string(), RensheResponseVO.class);
RenshejuHistoryDO
renshejuHistoryDO
=
new
RenshejuHistoryDO
();
//
RenshejuHistoryDO renshejuHistoryDO = new RenshejuHistoryDO();
renshejuHistoryDO
.
setInterfaceName
(
RenSheJuConstant
.
POST_2
);
//
renshejuHistoryDO.setInterfaceName(RenSheJuConstant.POST_2);
renshejuHistoryDO
.
setInputParam
(
JSONObject
.
fromObject
(
classBaseInfoDTO
).
toString
());
//
renshejuHistoryDO.setInputParam(JSONObject.fromObject(classBaseInfoDTO).toString());
if
(
200
==
response
.
code
())
{
//
if (200 == response.code()) {
renshejuHistoryDO
.
setOutputParam
(
rensheResponseVO
.
getCtt
().
toString
());
//
renshejuHistoryDO.setOutputParam(rensheResponseVO.getCtt().toString());
}
else
{
//
} else {
renshejuHistoryDO
.
setOutputParam
(
RenSheJuConstant
.
API_ERROR
);
//
renshejuHistoryDO.setOutputParam(RenSheJuConstant.API_ERROR);
}
//
}
renshejuHistoryMapper
.
insert
(
renshejuHistoryDO
);
//
renshejuHistoryMapper.insert(renshejuHistoryDO);
return
rensheResponseVO
;
//
return rensheResponseVO;
// return null;
// return null;
}
else
{
}
else
{
RenshejuHistoryDO
renshejuHistoryDO
=
new
RenshejuHistoryDO
();
RenshejuHistoryDO
renshejuHistoryDO
=
new
RenshejuHistoryDO
();
...
@@ -217,27 +217,27 @@ public class RenSheJuServiceImpl implements RenSheJuService {
...
@@ -217,27 +217,27 @@ public class RenSheJuServiceImpl implements RenSheJuService {
System
.
out
.
println
(
com
.
alibaba
.
fastjson
.
JSONObject
.
toJSONString
(
classHourBehaviorDTO
));
System
.
out
.
println
(
com
.
alibaba
.
fastjson
.
JSONObject
.
toJSONString
(
classHourBehaviorDTO
));
if
(
classHourBasics
.
size
()>
0
){
if
(
classHourBasics
.
size
()>
0
){
RequestBody
body
=
RequestBody
.
create
(
mediaType
,
JSONObject
.
fromObject
(
classHourBehaviorDTO
).
toString
());
//
RequestBody body = RequestBody.create(mediaType, JSONObject.fromObject(classHourBehaviorDTO).toString());
//
Request
request
=
new
Request
.
Builder
()
//
Request request = new Request.Builder()
.
url
(
renSheConfig
.
getUrl
()
+
"/import/downstream/enterprise/uploadClassHourBehavior"
)
//
.url(renSheConfig.getUrl() + "/import/downstream/enterprise/uploadClassHourBehavior")
.
method
(
"POST"
,
body
)
//
.method("POST", body)
.
addHeader
(
"User-Agent"
,
"Apifox/1.0.0 (https://www.apifox.cn)"
)
//
.addHeader("User-Agent", "Apifox/1.0.0 (https://www.apifox.cn)")
.
addHeader
(
"Content-Type"
,
"application/json"
)
//
.addHeader("Content-Type", "application/json")
.
build
();
//
.build();
Response
response
=
client
.
newCall
(
request
).
execute
();
//
Response response = client.newCall(request).execute();
//
RensheResponseVO
rensheResponseVO
=
JSON
.
parseObject
(
response
.
body
().
string
(),
RensheResponseVO
.
class
);
//
RensheResponseVO rensheResponseVO = JSON.parseObject(response.body().string(), RensheResponseVO.class);
RenshejuHistoryDO
renshejuHistoryDO
=
new
RenshejuHistoryDO
();
//
RenshejuHistoryDO renshejuHistoryDO = new RenshejuHistoryDO();
renshejuHistoryDO
.
setInterfaceName
(
RenSheJuConstant
.
POST_3
);
//
renshejuHistoryDO.setInterfaceName(RenSheJuConstant.POST_3);
renshejuHistoryDO
.
setInputParam
(
JSONObject
.
fromObject
(
classHourBehaviorDTO
).
toString
());
//
renshejuHistoryDO.setInputParam(JSONObject.fromObject(classHourBehaviorDTO).toString());
if
(
200
==
response
.
code
())
{
//
if (200 == response.code()) {
renshejuHistoryDO
.
setOutputParam
(
rensheResponseVO
.
getCtt
().
toString
());
//
renshejuHistoryDO.setOutputParam(rensheResponseVO.getCtt().toString());
}
else
{
//
} else {
renshejuHistoryDO
.
setOutputParam
(
RenSheJuConstant
.
API_ERROR
);
//
renshejuHistoryDO.setOutputParam(RenSheJuConstant.API_ERROR);
}
//
}
renshejuHistoryMapper
.
insert
(
renshejuHistoryDO
);
//
renshejuHistoryMapper.insert(renshejuHistoryDO);
return
rensheResponseVO
;
//
return rensheResponseVO;
}
else
{
}
else
{
RenshejuHistoryDO
renshejuHistoryDO
=
new
RenshejuHistoryDO
();
RenshejuHistoryDO
renshejuHistoryDO
=
new
RenshejuHistoryDO
();
renshejuHistoryDO
.
setInterfaceName
(
RenSheJuConstant
.
POST_3
);
renshejuHistoryDO
.
setInterfaceName
(
RenSheJuConstant
.
POST_3
);
...
...
src/main/java/com/subsidy/service/impl/VodPlayHistoryServiceImpl.java
View file @
ac283de
...
@@ -669,7 +669,6 @@ public class VodPlayHistoryServiceImpl extends ServiceImpl<VodPlayHistoryMapper,
...
@@ -669,7 +669,6 @@ public class VodPlayHistoryServiceImpl extends ServiceImpl<VodPlayHistoryMapper,
// this.baseMapper.updateById(vph2);
// this.baseMapper.updateById(vph2);
// }
// }
result
.
add
(
vodPlayStateVO
.
getId
());
result
.
add
(
vodPlayStateVO
.
getId
());
// break;
}
}
}
}
}
}
...
@@ -705,12 +704,12 @@ public class VodPlayHistoryServiceImpl extends ServiceImpl<VodPlayHistoryMapper,
...
@@ -705,12 +704,12 @@ public class VodPlayHistoryServiceImpl extends ServiceImpl<VodPlayHistoryMapper,
}
}
System
.
out
.
println
(
result
.
toString
());
System
.
out
.
println
(
result
.
toString
());
//
if (result.size()>0){
if
(
result
.
size
()>
0
){
//
List<String> telephones = Arrays.asList(new String[]{"15201936167", "18201963812", "18217669021"});
List
<
String
>
telephones
=
Arrays
.
asList
(
new
String
[]{
"15201936167"
,
"18201963812"
,
"18217669021"
});
//
for (String telephone : telephones){
for
(
String
telephone
:
telephones
){
//
smsUtils.sendWarning("SMS_460945631", telephone, result.toString());
smsUtils
.
sendWarning
(
"SMS_460945631"
,
telephone
,
result
.
toString
());
//
}
}
//
}
}
}
}
//19为基数的话,3次签到6.5到8,4次签到4.8-6,
//19为基数的话,3次签到6.5到8,4次签到4.8-6,
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment