|
@@ -718,6 +718,14 @@ type SopTaskInfoResp struct {
|
|
|
Data SopTaskInfo `json:"data"`
|
|
|
}
|
|
|
|
|
|
+// SopTask create response | SopTask创建回体
|
|
|
+// swagger:model SopTaskCreateResp
|
|
|
+type SopTaskCreateResp struct {
|
|
|
+ BaseDataInfo
|
|
|
+ // SopTask id | SopTask id
|
|
|
+ Data uint64 `json:"data"`
|
|
|
+}
|
|
|
+
|
|
|
// The response data of sop stage information | SopStage信息
|
|
|
// swagger:model SopStageInfo
|
|
|
type SopStageInfo struct {
|
|
@@ -822,6 +830,14 @@ type SopStageInfoResp struct {
|
|
|
Data SopStageInfo `json:"data"`
|
|
|
}
|
|
|
|
|
|
+// SopStage create response | SopStage创建回体
|
|
|
+// swagger:model SopStageCreateResp
|
|
|
+type SopStageCreateResp struct {
|
|
|
+ BaseDataInfo
|
|
|
+ // SopStage id | SopStage id
|
|
|
+ Data uint64 `json:"data"`
|
|
|
+}
|
|
|
+
|
|
|
// Move sop stage request params | 移动阶段请求参数
|
|
|
// swagger:model SopStageMoveReq
|
|
|
type SopStageMoveReq struct {
|
|
@@ -860,6 +876,14 @@ type SopNodeInfoResp struct {
|
|
|
Data SopNodeInfo `json:"data"`
|
|
|
}
|
|
|
|
|
|
+// SopNode create response | SopNode创建返回体
|
|
|
+// swagger:model SopNodeCreateResp
|
|
|
+type SopNodeCreateResp struct {
|
|
|
+ BaseDataInfo
|
|
|
+ // SopNode id | SopNode id
|
|
|
+ Data uint64 `json:"data"`
|
|
|
+}
|
|
|
+
|
|
|
// The response data of message records information | MessageRecords信息
|
|
|
// swagger:model MessageRecordsInfo
|
|
|
type MessageRecordsInfo struct {
|