简要描述:

  • 项目管理-修改时间

请求域名:

  • https://dev8.yunzmall.com/business/1/

请求URL:

get:/plugin/project-manager/task/planList

请求示例:

请求示例:

{
 "task_id":206,
}

task_plan_data 参数:

参数名 是否必须 类型 说明
task_id int 当前任务ID

返回示例:

正确时返回:

{
    "result": 1,
    "msg": "ok",
    "data": [
        {
            "id": 9,
            "uniacid": 25,
            "business_id": 11,
            "task_id": 206,
            "staff_uid": 222,
            "type": 3,
            "schedule": 10,
            "start_time": 555555,
            "end_time": 7777777,
            "estimate_day": null,
            "reality_day": null,
            "test_score": null,
            "code_score": null,
            "project_score": null,
            "created_at": "2023-08-24 09:36:47",
            "updated_at": "2023-08-24 09:36:47",
            "deleted_at": null,
            "type_name": "后端"
			"has_one_staff": {
                "id": 222,
                "avatar": "https://wework.qpic.cn/wwpic/717887_NC43KLzyQqGFi1p_1656380347/0",
                "name": "谢梓杰",
                "userid": null,
                "avatar_mediaid": "https://wework.qpic.cn/wwpic/717887_NC43KLzyQqGFi1p_1656380347/0"
            }
        }
    ]
}

参数:

参数名 类型 说明
id int 计划id
uniacid int 公众号id
business_id int 企业id
task_id int 当前任务ID
staff_uid int 负责人id
schedule int 进度
start_time int 开始时间
end_time int 结束时间
estimate_day int 预估工作日
reality_day int 实际工作日
test_score string 测试评分
code_score string 代码评分
created_at int 当前任务ID
updated_at int 当前任务ID
deleted_at int 当前任务ID
type_name sring 计划类型名称
has_one_staff array 负责人信息

has_one_staff参数:

参数名 类型 说明
id int 负责人id
avatar string 头像
avatar_mediaid string 头像
name string 名称

错误时返回:

{
  "result": 0,
  "msg": "",
  "data": []
}