文档
测试

定期任务详情

POST
http://127.0.0.1:8181/staff/regular/taskDetail

请求参数

参数名
类型
描述
必填
id
long
任务id
必填

响应参数

参数名
类型
描述
必填
id
long
定期任务id
必填
parkRegion
string
园区名
必填
taskName
string
任务名
必填
route
string
作业路线
必填
startTime
date
开始时间时间
必填
repeatType
long
重复类型:0从不,1每周,2每月,3每季度,4每年
必填
createUserName
string
发起人姓名
必填
time
date
创建时间
必填
taskStatus
long
状态:0待接受,1待处理,2待反馈,3完结
必填
annex
string
附件
必填
pid
int
父任务id
必填
useStatus
int
开关:1启用,0关闭
必填
executeUserId
int
执行人id
必填
executeUserName
string
执行人姓名
必填
receiveTime
date
接收时间
必填
executeUserMobile
string
执行人手机
必填
executeContent
string
处理内容
必填
executeImgs
string
处理图片
必填
existProblem
int
是否存在问题(0-否,1-是)
必填
autoFeedback
int
系统自动反馈标识(0-手动,1-自动)
必填
reviewStatus
int
复查结果:1满意,2不满意,3差强人意
必填
taskHandleProcessList
list
处理进度列表
必填
taskId
long
任务id
必填
taskType
long
任务类型 1报修,2意见,3投诉,4定期任务
必填
userId
string
处理人
必填
userName
string
用户名称
必填
mobilePhone
string
处理人手机号
必填
operationType
long
操作类型(0-转发,1-分配,2-接受,3-响应,4-处理,5-反馈)
必填
completeFlag
long
完成标识(0-未完成,1-已完成)
必填
timeOutFlag
long
超时标识(0-未超时,1-已超时)
必填
forwardUserId
long
转发用户id
必填
forwardUserName
string
转发用户名称
必填

说明 / 示例

**请求报文** ```json { "id": 325 } ``` **响应报文** ```json { "code": "0", "msg": "成功", "detail": null, "result": { "id": 325, "parkRegion": "皇嘉商务中心", "taskName": "奖惩路灯明亮度", "route": "小区门口到公园", "startTime": "2022-11-17", "repeatType": 1, "createUserName": "梁邱", "time": "2022-11-17 14:51:52", "taskStatus": 0, "annex": "", "taskHandleProcessList": [ { "searchValue": null, "creatorId": null, "createBy": null, "createTime": "2022-11-17 14:51:52", "updaterId": null, "updateBy": null, "updateTime": null, "remark": null, "params": {}, "taskId": 325, "taskType": 4, "userId": 9955, "userName": "梁邱", "mobilePhone": "17304497724", "operationType": 2, "completeFlag": 0, "timeOutFlag": 0, "forwardUserId": null, "forwardUserName": null, "timeOut": "2022-11-17 14:51:52" } ] }, "traceId": "110677072ca549dfb209af36d8b0c486", "success": true } ```