Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
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
6e5cb467
Commit
6e5cb467
authored
Mar 14, 2026
by
zhangjianqian
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
ccf7cb94
b4c85b06
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
119 additions
and
92 deletions
+119
-92
TComplainDeal.java
...src/main/java/com/zehong/system/domain/TComplainDeal.java
+13
-0
TPlanInfoServiceImpl.java
.../com/zehong/system/service/impl/TPlanInfoServiceImpl.java
+1
-1
TComplainDealMapper.xml
.../src/main/resources/mapper/system/TComplainDealMapper.xml
+6
-1
index.vue
zh-baseversion-web/src/views/complainDeal/index.vue
+99
-90
No files found.
zh-baseversion-system/src/main/java/com/zehong/system/domain/TComplainDeal.java
View file @
6e5cb467
...
@@ -85,6 +85,19 @@ public class TComplainDeal extends BaseEntity
...
@@ -85,6 +85,19 @@ public class TComplainDeal extends BaseEntity
*/
*/
private
String
provincialDataFlag
;
private
String
provincialDataFlag
;
/*
* 投诉渠道(1-12319热线,2-12345热线)
* */
private
String
complaintChannels
;
public
String
getComplaintChannels
()
{
return
complaintChannels
;
}
public
void
setComplaintChannels
(
String
complaintChannels
)
{
this
.
complaintChannels
=
complaintChannels
;
}
public
String
getProvincialDataFlag
()
{
public
String
getProvincialDataFlag
()
{
return
provincialDataFlag
;
return
provincialDataFlag
;
}
}
...
...
zh-baseversion-system/src/main/java/com/zehong/system/service/impl/TPlanInfoServiceImpl.java
View file @
6e5cb467
...
@@ -117,7 +117,7 @@ public class TPlanInfoServiceImpl implements ITPlanInfoService
...
@@ -117,7 +117,7 @@ public class TPlanInfoServiceImpl implements ITPlanInfoService
List
<
String
>
collect
=
tComplainDealTransfers
.
stream
().
map
(
TComplainDealTransfer:
:
getEnterpriseId
).
collect
(
Collectors
.
toList
());
List
<
String
>
collect
=
tComplainDealTransfers
.
stream
().
map
(
TComplainDealTransfer:
:
getEnterpriseId
).
collect
(
Collectors
.
toList
());
return
tPlanInfoMapper
.
transferEnterpriseList
(
collect
);
return
tPlanInfoMapper
.
transferEnterpriseList
(
collect
);
}
else
{
}
else
{
return
new
ArrayList
<>
();
return
tPlanInfoMapper
.
selectEnterprise
();
}
}
}
}
}
}
zh-baseversion-system/src/main/resources/mapper/system/TComplainDealMapper.xml
View file @
6e5cb467
...
@@ -27,6 +27,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -27,6 +27,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result
property=
"complainType"
column=
"complain_type"
/>
<result
property=
"complainType"
column=
"complain_type"
/>
<result
property=
"overtimeSupervision"
column=
"overtime_supervision"
/>
<result
property=
"overtimeSupervision"
column=
"overtime_supervision"
/>
<result
property=
"township"
column=
"township"
/>
<result
property=
"township"
column=
"township"
/>
<result
property=
"complaintChannels"
column=
"complaint_channels"
/>
</resultMap>
</resultMap>
<sql
id=
"selectTComplainDealVo"
>
<sql
id=
"selectTComplainDealVo"
>
...
@@ -47,7 +48,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -47,7 +48,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
update_by,
update_by,
update_time,
update_time,
is_del,
is_del,
remarks,provincial_data_flag,complain_type,overtime_supervision,township from t_complain_deal
remarks,provincial_data_flag,complain_type,overtime_supervision,township
,complaint_channels
from t_complain_deal
</sql>
</sql>
<select
id=
"selectTComplainDealList"
parameterType=
"TComplainDeal"
resultMap=
"TComplainDealResult"
>
<select
id=
"selectTComplainDealList"
parameterType=
"TComplainDeal"
resultMap=
"TComplainDealResult"
>
...
@@ -69,6 +70,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -69,6 +70,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"complainType != null and complainType != ''"
>
and complain_type = #{complainType}
</if>
<if
test=
"complainType != null and complainType != ''"
>
and complain_type = #{complainType}
</if>
<if
test=
"overtimeSupervision != null and overtimeSupervision != ''"
>
and overtime_supervision = #{overtimeSupervision}
</if>
<if
test=
"overtimeSupervision != null and overtimeSupervision != ''"
>
and overtime_supervision = #{overtimeSupervision}
</if>
<if
test=
"township != null and township != ''"
>
and township = #{township}
</if>
<if
test=
"township != null and township != ''"
>
and township = #{township}
</if>
<if
test=
"complaintChannels != null and complaintChannels != ''"
>
and complaint_channels = #{complaintChannels}
</if>
</where>
</where>
order by create_time desc
order by create_time desc
</select>
</select>
...
@@ -127,6 +129,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -127,6 +129,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"complainType != null"
>
complain_type,
</if>
<if
test=
"complainType != null"
>
complain_type,
</if>
<if
test=
"overtimeSupervision != null"
>
overtime_supervision,
</if>
<if
test=
"overtimeSupervision != null"
>
overtime_supervision,
</if>
<if
test=
"township != null"
>
township,
</if>
<if
test=
"township != null"
>
township,
</if>
<if
test=
"complaintChannels != null"
>
complaint_channels,
</if>
</trim>
</trim>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<trim
prefix=
"values ("
suffix=
")"
suffixOverrides=
","
>
<if
test=
"complainName != null"
>
#{complainName},
</if>
<if
test=
"complainName != null"
>
#{complainName},
</if>
...
@@ -150,6 +153,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -150,6 +153,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"complainType != null"
>
#{complainType},
</if>
<if
test=
"complainType != null"
>
#{complainType},
</if>
<if
test=
"overtimeSupervision != null"
>
#{overtimeSupervision},
</if>
<if
test=
"overtimeSupervision != null"
>
#{overtimeSupervision},
</if>
<if
test=
"township != null"
>
#{township},
</if>
<if
test=
"township != null"
>
#{township},
</if>
<if
test=
"complaintChannels != null"
>
#{complaintChannels},
</if>
</trim>
</trim>
</insert>
</insert>
...
@@ -186,6 +190,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -186,6 +190,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if
test=
"complainType != null"
>
complain_type = #{complainType},
</if>
<if
test=
"complainType != null"
>
complain_type = #{complainType},
</if>
<if
test=
"overtimeSupervision != null"
>
overtime_supervision = #{overtimeSupervision},
</if>
<if
test=
"overtimeSupervision != null"
>
overtime_supervision = #{overtimeSupervision},
</if>
<if
test=
"township != null"
>
township = #{township},
</if>
<if
test=
"township != null"
>
township = #{township},
</if>
<if
test=
"complaintChannels != null"
>
complaint_channels = #{complaintChannels},
</if>
</trim>
</trim>
where complain_deal_id = #{complainDealId}
where complain_deal_id = #{complainDealId}
</update>
</update>
...
...
zh-baseversion-web/src/views/complainDeal/index.vue
View file @
6e5cb467
This diff is collapsed.
Click to expand it.
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