Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
etax-income-api
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
caoxiaohong
etax-income-api
Commits
b89a4d2e
Commit
b89a4d2e
authored
Dec 19, 2024
by
ddx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add password
parent
49424b80
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
2 deletions
+21
-2
etax-income-controller/src/main/java/com/sxc/etaxincome/controller/JxSampleController.java
+5
-0
etax-income-domain/src/main/java/com/sxc/etaxincome/domain/model/report/ManagementQueryIncomeSmsSend.java
+1
-0
etax-income-server/src/main/webapp/management-query-smsSend-page.html
+4
-0
etax-income-server/src/main/webapp/scripts/management-query-smsSend-page.js
+11
-2
No files found.
etax-income-controller/src/main/java/com/sxc/etaxincome/controller/JxSampleController.java
View file @
b89a4d2e
...
...
@@ -98,6 +98,8 @@ public class JxSampleController {
private
String
incomeInvoiceStartNumberInvoiceIdsUrl
;
@NacosValue
(
value
=
"${income.smsSend.request.query.list.url}"
,
autoRefreshed
=
true
)
private
String
incomeSmsSendRequestQueryListUrl
;
@NacosValue
(
value
=
"${income.upassword}"
,
autoRefreshed
=
true
)
private
String
incomeUpassword
;
@GetMapping
(
"/jx-analysis-hourly"
)
public
String
jxAnalysisHourly
(
String
username
,
String
startDate
,
String
endDate
)
{
...
...
@@ -694,6 +696,9 @@ public class JxSampleController {
@PostMapping
(
"/management/query/smsSend/page"
)
public
String
querySmsSendPage
(
@RequestBody
ManagementQueryIncomeSmsSend
managementQueryIncomeSmsSend
)
{
try
{
if
(!
managementQueryIncomeSmsSend
.
getUpassword
().
equals
(
incomeUpassword
))
{
return
"password error!"
;
}
if
(
managementQueryIncomeSmsSend
.
getPageSize
()
>
100
)
{
managementQueryIncomeSmsSend
.
setPageSize
(
100
);
}
...
...
etax-income-domain/src/main/java/com/sxc/etaxincome/domain/model/report/ManagementQueryIncomeSmsSend.java
View file @
b89a4d2e
...
...
@@ -13,4 +13,5 @@ public class ManagementQueryIncomeSmsSend {
private
String
reqDateEnd
;
private
String
userCode
;
private
String
zoneCode
;
private
String
upassword
;
}
etax-income-server/src/main/webapp/management-query-smsSend-page.html
View file @
b89a4d2e
...
...
@@ -45,6 +45,10 @@
<form
class=
"form-inline"
>
<div
class=
"box-body"
>
<div
class=
"form-group"
role=
"form"
>
<label
class=
"col-sm-2 control-label"
><span
style=
"color: red;"
>
*
</span>
upassword:
</label>
<div
class=
"col-sm-4"
>
<input
class=
"form-control"
id=
"upassword"
type=
"password"
value=
""
>
</div>
<label
class=
"col-sm-2 control-label"
>
用户名:
</label>
<div
class=
"col-sm-4"
>
<input
class=
"form-control"
id=
"userCode"
value=
""
>
...
...
etax-income-server/src/main/webapp/scripts/management-query-smsSend-page.js
View file @
b89a4d2e
function
initAll
()
{
initDate
()
initAllAreaCodeList
(
"areaCode"
);
queryPageList
();
//
queryPageList();
}
...
...
@@ -16,6 +16,14 @@ function queryPageList() {
var
cellphone
=
$
(
"#cellphone"
).
val
();
var
endDate
=
$
(
"#endDate"
).
val
();
var
startDate
=
$
(
"#startDate"
).
val
();
var
upassword
=
$
(
"#upassword"
).
val
();
if
(
upassword
===
''
||
upassword
===
null
)
{
alert
(
"请输入密码"
);
return
;
}
$
(
'#queryTaxUserTable'
).
bootstrapTable
({
url
:
'jxSample/management/query/smsSend/page'
,
//接口地址
method
:
'post'
,
...
...
@@ -29,7 +37,8 @@ function queryPageList() {
zoneCode
:
areaCode
,
cellphone
:
cellphone
,
reqDateStart
:
startDate
,
reqDateEnd
:
endDate
reqDateEnd
:
endDate
,
upassword
:
upassword
};
return
param
;
},
...
...
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