文档
测试

意见反馈列表查询

POST
http://127.0.0.1:8181/staff/opinion/taskList

请求参数

参数名
类型
描述
必填
pageNum
int
页码
必填
pageSize
int
页面条数
必填
taskStatus
int
处理状态 0待分配 1待接受 2待响应 3待处理 4待反馈 5已完成
必填

响应参数

参数名
类型
描述
必填
total
long
总条数
必填
hasMenu
boolean
意见反馈菜单
必填
hasPer1
boolean
意见查看
必填
hasPer2
boolean
意见处理
必填
hasPer3
boolean
意见监督
必填
hasPer4
boolean
意见分配
必填
list
list
意见反馈列表
必填
id
long
意见反馈任务id
必填
time
date
创建时间
必填
lastupdate
date
更新时间
必填
userId
long
用户ID
必填
userName
string
用户名称
必填
contactMobile
string
联系方式
必填
opinionContent
string
意见内容
必填
opinionImgs
string
图片(逗号分隔最多6张)
必填
opinionStatus
long
处理状态 0待分配 1待接受 2待响应 3待处理 4待反馈 5已完成
必填
parkRegionId
long
园区ID
必填
operId
string
操作人
必填
operMark
string
处理内容
必填
operTime
date
处理时间
必填
type
long
反馈类型
必填
pid
long
处理人ID
必填
fdResults
string
-1-自动完成 0-完美解决 1-已解决但还需要改进 2-未解决不满意
必填
fdContent
string
反馈内容
必填
fprName
string
分配人姓名
必填
fprMobile
string
分配人电话
必填
clrName
string
处理人姓名
必填
clrMobile
string
处理人电话
必填
operImgs
string
处理图片(逗号分隔最多3张)
必填
acceptMark
string
受理备注
必填
executorFlag
boolean
是否是执行人标识
必填
typeName
string
意见类型
必填
taskHandleProcessList
list
任务进度列表
必填
taskId
任务id
必填
taskType
任务类型 1报修,2意见,3投诉,4定期任务,5安全隐患,6巡检点,7意见反馈,8客户投诉
必填
userId
处理人
必填
userName
用户名称
必填
mobilePhone
处理人手机号
必填
operationType
操作类型(0-转发,1-分配,2-接受,3-响应,4-处理,5-反馈)
必填
completeFlag
完成标识(0-未完成,1-已完成)
必填
timeOutFlag
超时标识(0-未超时,1-已超时)
必填
forwardUserId
转发用户id
必填
forwardUserName
转发用户名称
必填
timeOut
超时时间
必填
handleTimeout
date
预计处理时间
必填

说明 / 示例

**请求报文** ```json { "pageNum":1, "pageSize":10, "taskStatus":0 } ``` --- **响应报文** ```json { "code": "0", "msg": "成功", "detail": null, "result": { "total": 1, "hasMenu": true, "hasPer1": true, "hasPer2": true, "hasPer3": false, "hasPer4": false, "list": [ { "id": 110, "time": "2022-12-06", "lastupdate": "2022-12-06", "userId": 7, "userName": "刘东平", "contactMobile": "17722660013", "opinionContent": "意见内容", "opinionImgs": "", "opinionStatus": 0, "parkRegionId": 107, "operId": null, "operMark": null, "operTime": null, "type": "1", "pid": null, "fdResults": "", "fdContent": null, "companyid": null, "fprName": null, "fprMobile": null, "clrName": null, "clrMobile": null, "operImgs": null, "acceptMark": null, "executorFlag": false, "taskHandleProcessList": [ { "searchValue": null, "creatorId": null, "createBy": null, "createTime": "2022-12-06 11:26:28", "updaterId": null, "updateBy": null, "updateTime": null, "remark": null, "params": {}, "taskId": 110, "taskType": 7, "userId": null, "userName": null, "mobilePhone": null, "operationType": 1, "completeFlag": 0, "timeOutFlag": 1, "forwardUserId": null, "forwardUserName": null, "timeOut": "2022-12-06 15:26:27", "hiddenDangerHandle": null } ] } ] }, "traceId": "263e3e01d8d14da6ab4ab910c0ad6b68", "success": true } ```