Merge remote-tracking branch 'origin/developing' into developing

This commit is contained in:
jipengfei-jpf
2023-08-12 20:13:11 +08:00
33 changed files with 1044 additions and 473 deletions

View File

@ -43,4 +43,9 @@ public class OperationCreateRequest extends DataSourceBaseRequest {
* 是否在tab中被打开,y表示打开,n表示未打开
*/
private String tabOpened;
/**
* operation type
*/
private String operationType;
}

View File

@ -41,4 +41,9 @@ public class OperationQueryRequest extends PageQueryRequest {
* orderBy modify time desc
*/
private Boolean orderByDesc;
/**
* operation type
*/
private String operationType;
}

View File

@ -38,4 +38,9 @@ public class OperationUpdateRequest {
* 是否在tab中被打开,y表示打开,n表示未打开
*/
private String tabOpened;
/**
* operation type
*/
private String operationType;
}

View File

@ -65,4 +65,9 @@ public class OperationVO {
* 是否在tab中被打开,y表示打开,n表示未打开
*/
private String tabOpened;
/**
* operation type
*/
private String operationType;
}