Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zh-baseversion-project
Project
Project
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
王浩
zh-baseversion-project
Commits
bd5a1722
Commit
bd5a1722
authored
Jul 15, 2024
by
xulihui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
对接液化气接口
parent
8d824bcf
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
232 additions
and
31 deletions
+232
-31
TWorkOrderController.java
...web/controller/operationMonitor/TWorkOrderController.java
+2
-1
TimeTasksController.java
...a/com/zehong/web/controller/task/TimeTasksController.java
+183
-20
application-test.yml
zh-baseversion-admin/src/main/resources/application-test.yml
+5
-0
RedisCache.java
...rc/main/java/com/zehong/common/core/redis/RedisCache.java
+6
-5
HttpClientUtils.java
...in/java/com/zehong/common/utils/http/HttpClientUtils.java
+2
-0
TLpgGasBottleFiles.java
...ain/java/com/zehong/system/domain/TLpgGasBottleFiles.java
+10
-0
TLpgAirChargeFilesMapper.java
...va/com/zehong/system/mapper/TLpgAirChargeFilesMapper.java
+2
-0
ITLpgAirChargeFilesService.java
...com/zehong/system/service/ITLpgAirChargeFilesService.java
+2
-0
TLpgAirChargeFilesServiceImpl.java
...ng/system/service/impl/TLpgAirChargeFilesServiceImpl.java
+7
-0
TLpgAirChargeFilesMapper.xml
...main/resources/mapper/system/TLpgAirChargeFilesMapper.xml
+4
-0
TLpgGasBottleFilesMapper.xml
...main/resources/mapper/system/TLpgGasBottleFilesMapper.xml
+5
-1
index.vue
zh-baseversion-web/src/views/examine/index.vue
+4
-4
No files found.
zh-baseversion-admin/src/main/java/com/zehong/web/controller/operationMonitor/TWorkOrderController.java
View file @
bd5a1722
...
...
@@ -180,7 +180,8 @@ public class TWorkOrderController extends BaseController
}
else
{
enterpriseId
=
String
.
valueOf
(
user
.
getDeptId
());
}
return
AjaxResult
.
success
(
tWorkOrderService
.
selectWorkOrderNum
(
enterpriseId
));
Map
<
String
,
Object
>
stringObjectMap
=
tWorkOrderService
.
selectWorkOrderNum
(
enterpriseId
);
return
AjaxResult
.
success
(
stringObjectMap
);
}
}
zh-baseversion-admin/src/main/java/com/zehong/web/controller/task/TimeTasksController.java
View file @
bd5a1722
This diff is collapsed.
Click to expand it.
zh-baseversion-admin/src/main/resources/application-test.yml
View file @
bd5a1722
...
...
@@ -106,4 +106,9 @@ zhengfu:
#链接访问地址
apiUrl
:
http://test.zfcxjst.hebei.gov.cn:8082/openApi/index/sync/v1/entrypoint
wjyhq
:
#无极液化气对接地址
apiUrl
:
https://api.117915.com/openapi
#获取Token接口参数
authCode
:
LPG_WJXHTYHQA_101855528016
accessKey
:
41D714AC92234B1488961805E6AB8E15
secretKey
:
38FAB0FA472E4354895085F1251052D8
zh-baseversion-common/src/main/java/com/zehong/common/core/redis/RedisCache.java
View file @
bd5a1722
package
com
.
zehong
.
common
.
core
.
redis
;
import
java.util.Collection
;
import
java.util.Iterator
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.Set
;
import
java.util.*
;
import
java.util.concurrent.TimeUnit
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.data.redis.core.BoundSetOperations
;
...
...
@@ -49,6 +45,11 @@ public class RedisCache
redisTemplate
.
opsForValue
().
set
(
key
,
value
,
timeout
,
timeUnit
);
}
public
<
T
>
void
setCacheObjectExpireAt
(
final
String
key
,
final
Date
date
)
{
redisTemplate
.
expireAt
(
key
,
date
);
}
/**
* 设置有效时间
*
...
...
zh-baseversion-common/src/main/java/com/zehong/common/utils/http/HttpClientUtils.java
View file @
bd5a1722
...
...
@@ -133,6 +133,8 @@ public class HttpClientUtils {
response
=
httpClient
.
execute
(
httpPost
);
if
(
response
!=
null
&&
response
.
getStatusLine
().
getStatusCode
()
==
200
)
{
resultString
=
EntityUtils
.
toString
(
response
.
getEntity
(),
"UTF-8"
);
}
else
{
System
.
out
.
println
(
response
.
getStatusLine
().
getStatusCode
());
}
}
finally
{
close
(
response
,
httpClient
);
...
...
zh-baseversion-system/src/main/java/com/zehong/system/domain/TLpgGasBottleFiles.java
View file @
bd5a1722
...
...
@@ -198,6 +198,16 @@ public class TLpgGasBottleFiles extends BaseEntity
@Excel
(
name
=
"存储类型"
)
private
String
fBottleStorageType
;
private
String
fRowVersion
;
public
String
getfRowVersion
()
{
return
fRowVersion
;
}
public
void
setfRowVersion
(
String
fRowVersion
)
{
this
.
fRowVersion
=
fRowVersion
;
}
public
String
getfValveName
()
{
return
fValveName
;
}
...
...
zh-baseversion-system/src/main/java/com/zehong/system/mapper/TLpgAirChargeFilesMapper.java
View file @
bd5a1722
...
...
@@ -19,6 +19,8 @@ public interface TLpgAirChargeFilesMapper
*/
public
TLpgAirChargeFiles
selectTLpgAirChargeFilesById
(
Long
fGasAirChargeId
);
public
Integer
selectTLpgAirChargeFilesTotal
();
/**
* 查询液化石油气-充装记录列表
*
...
...
zh-baseversion-system/src/main/java/com/zehong/system/service/ITLpgAirChargeFilesService.java
View file @
bd5a1722
...
...
@@ -19,6 +19,8 @@ public interface ITLpgAirChargeFilesService
*/
public
TLpgAirChargeFiles
selectTLpgAirChargeFilesById
(
Long
fGasAirChargeId
);
public
Integer
selectTLpgAirChargeFilesTotal
();
/**
* 查询液化石油气-充装记录列表
*
...
...
zh-baseversion-system/src/main/java/com/zehong/system/service/impl/TLpgAirChargeFilesServiceImpl.java
View file @
bd5a1722
...
...
@@ -31,6 +31,13 @@ public class TLpgAirChargeFilesServiceImpl implements ITLpgAirChargeFilesService
return
tLpgAirChargeFilesMapper
.
selectTLpgAirChargeFilesById
(
fGasAirChargeId
);
}
@Override
public
Integer
selectTLpgAirChargeFilesTotal
()
{
return
tLpgAirChargeFilesMapper
.
selectTLpgAirChargeFilesTotal
();
}
/**
* 查询液化石油气-充装记录列表
*
...
...
zh-baseversion-system/src/main/resources/mapper/system/TLpgAirChargeFilesMapper.xml
View file @
bd5a1722
...
...
@@ -37,6 +37,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
where f_gas_air_charge_id = #{fGasAirChargeId}
</select>
<select
id=
"selectTLpgAirChargeFilesTotal"
resultType=
"int"
>
SELECT COUNT(*) FROM t_lpg_air_charge_files
</select>
<insert
id=
"insertTLpgAirChargeFiles"
parameterType=
"TLpgAirChargeFiles"
useGeneratedKeys=
"true"
keyProperty=
"fGasAirChargeId"
>
insert into t_lpg_air_charge_files
<trim
prefix=
"("
suffix=
")"
suffixOverrides=
","
>
...
...
zh-baseversion-system/src/main/resources/mapper/system/TLpgGasBottleFilesMapper.xml
View file @
bd5a1722
...
...
@@ -50,6 +50,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result
property=
"fThirdPartyLabel"
column=
"f_third_party_label"
/>
<result
property=
"fHoleCode"
column=
"f_hole_code"
/>
<result
property=
"fBottleStorageType"
column=
"f_bottle_storage_type"
/>
<result
property=
"fRowVersion"
column=
"f_row_version"
/>
</resultMap>
<sql
id=
"selectTLpgGasBottleFilesVo"
>
...
...
@@ -57,7 +58,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
( CASE f_is_specialized WHEN '1' THEN '专用' WHEN '2' THEN '托管' ELSE '-' END ) AS f_is_specialized,
f_valve_manu_facturer, f_inspection_label, f_third_party_label, f_hole_code, f_bottle_storage_type,
( CASE f_state WHEN '1' THEN '新增' WHEN '2' THEN '修改' WHEN '-1' THEN '删除' ELSE '-' END ) AS f_state,
f_opt_name, f_add_time, f_up_time, f_up_opt_name from t_lpg_gas_bottle_files
f_opt_name, f_add_time, f_up_time, f_up_opt_name
, f_row_version
from t_lpg_gas_bottle_files
</sql>
<select
id=
"selectTLpgGasBottleFilesList"
parameterType=
"TLpgGasBottleFiles"
resultMap=
"TLpgGasBottleFilesResult"
>
...
...
@@ -130,6 +131,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"fAddTime != null"
>
f_add_time,
</if>
<if
test=
"fUpTime != null"
>
f_up_time,
</if>
<if
test=
"fUpOptName != null"
>
f_up_opt_name,
</if>
<if
test=
"fRowVersion != null"
>
f_row_version,
</if>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"fRegCode != null"
>
#{fRegCode},
</if>
...
...
@@ -178,6 +180,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"fUpTime != null"
>
#{fUpTime},
</if>
<if
test=
"fUpOptName != null"
>
#{fUpOptName},
</if>
<if
test=
"fRowVersion != null"
>
#{fRowVersion},
</if>
</trim>
</insert>
...
...
@@ -229,6 +232,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"fAddTime != null"
>
f_add_time = #{fAddTime},
</if>
<if
test=
"fUpTime != null"
>
f_up_time = #{fUpTime},
</if>
<if
test=
"fUpOptName != null"
>
f_up_opt_name = #{fUpOptName},
</if>
<if
test=
"fRowVersion != null"
>
f_row_version = #{fRowVersion},
</if>
</trim>
where f_gas_bottle_files_id = #{fGasBottleFilesId}
</update>
...
...
zh-baseversion-web/src/views/examine/index.vue
View file @
bd5a1722
...
...
@@ -79,10 +79,10 @@
return
{
user
:{
name
:
''
,
type
:
''
,
num
:
''
,
price
:
''
},
stu
:
[
// {
//
// },
{
},
/*{
name: "河北省石家庄平山县",
type: "中诚燃气",
num: "管道燃气",
...
...
@@ -101,7 +101,7 @@
ts: "20次",
kh: 100,
jg: "优秀",
},
},
*/
// {
// name: "河北省石家庄平山县",
// type: "盈德气体",
...
...
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