修改排班管理
## 修改 排班管理
**接口地址**:`/tfw/staff/userShift/update`
**请求方式**:`PUT`
**请求数据类型**:`application/json`
**响应数据类型**:`*/*`
**接口描述**:Update CommStaffWorkUserShift By Id
**请求示例**:
```javascript
{
"createBy": "",
"createDate": "",
"id": "",
"month": "",
"orgId": "",
"remarks": "",
"shiftDate": "",
"shiftEndDate": "",
"shiftEndTime": "",
"shiftId": "",
"shiftStartTime": "",
"status": "",
"title": "",
"updateBy": "",
"updateDate": "",
"userId": "",
"workPlace": "",
"year": ""
}
```
**请求参数**:
**请求参数**:
| 参数名称 | 参数说明 | in | 是否必须 | 数据类型 | schema |
| -------- | -------- | ----- | -------- | -------- | ------ |
|updateRequest|updateRequest|body|true|CommStaffWorkUserShift对象|CommStaffWorkUserShift对象|
|  createBy|创建人||false|string||
|  createDate|创建时间||false|string(date-time)||
|  id|主键id||false|string||
|  month|对应月||false|string||
|  orgId|组织id||false|string||
|  remarks|备注||false|string||
|  shiftDate|班次分配时间||false|string(date-time)||
|  shiftEndDate|结束日期||false|string(date-time)||
|  shiftEndTime|结束时间||false|string||
|  shiftId|班次id||false|string||
|  shiftStartTime|开始时间||false|string||
|  status|状态||false|string||
|  title|排班标题||false|string||
|  updateBy|更新人||false|string||
|  updateDate|更新时间||false|string(date-time)||
|  userId|用户id||false|string||
|  workPlace|工作地点||false|string||
|  year|年||false|string||
|Authorization|user token|header|false|string||
|sign|data sign|header|false|string||
|timestamp|timestamp|header|false|string||
**响应状态**:
| 状态码 | 说明 | schema |
| -------- | -------- | ----- |
|200|OK|BaseResponse«BizGeneralResponse»|
**响应参数**:
| 参数名称 | 参数说明 | 类型 | schema |
| -------- | -------- | ----- |----- |
|code|响应代码|integer(int32)|integer(int32)|
|data|结果数据|BizGeneralResponse|BizGeneralResponse|
|  result|返回结果|string||
|msg|响应信息|string||
|requestId|内部记录ID|string||
|type|响应类型|string||
**响应示例**:
```javascript
{
"code": 0,
"data": {
"result": ""
},
"msg": "",
"requestId": "",
"type": ""
}
```