修改班次管理

## 修改 班次管理 **接口地址**:`/tfw/staff/shift/update` **请求方式**:`PUT` **请求数据类型**:`application/json` **响应数据类型**:`*/*` **接口描述**:Update CommStaffWorkShift By Id **请求示例**: ```javascript { "createBy": "", "createDate": "", "id": "", "orgCascadeIds": "", "orgId": "", "remarks": "", "shiftDuty": "", "shiftEndTime": "", "shiftName": "", "shiftPhone": "", "shiftStartTime": "", "status": "", "updateBy": "", "updateDate": "" } ``` **请求参数**: **请求参数**: | 参数名称 | 参数说明 | in | 是否必须 | 数据类型 | schema | | -------- | -------- | ----- | -------- | -------- | ------ | |updateRequest|updateRequest|body|true|CommStaffWorkShift对象|CommStaffWorkShift对象| |  createBy|创建者||false|string|| |  createDate|创建人||false|string(date-time)|| |  id|主键||false|string|| |  orgCascadeIds|组织级联ids||false|string|| |  orgId|组织id||false|string|| |  remarks|备注||false|string|| |  shiftDuty|职责||false|string|| |  shiftEndTime|班次时间段 结束时间||false|string|| |  shiftName|班次名称||false|string|| |  shiftPhone|值班电话||false|string|| |  shiftStartTime|班次时间段 开始时间||false|string|| |  status|状态||false|string|| |  updateBy|更新者||false|string|| |  updateDate|更新时间||false|string(date-time)|| |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": "" } ```