简要描述:

  • 项目管理-修改计划

请求域名:

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

请求URL:

GET/plugin/project-manager/task/changePlan

请求说明:

请求示例:

{
        "plan_id":9,
        "type": 3,
        "schedule":20,
        "staff_uid":222,
        "start_time" : 123,
        "end_time" : 456
}

task_plan_data 参数(参数没有时传null):

参数名 是否必须 类型 说明
task_id int 当前任务ID
type int 计划类型
schedule int 进度
staff_uid int 负责人id
start_time int 当前任务ID
end_time int 当前任务ID

返回示例:

正确时返回:

{
    "result": 1,
    "msg": "ok",
    "data": [
   ]
}

错误时返回:

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