mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-12 04:27:39 +00:00
[improvement](Dict)Support returns dict task list of dimensions by page
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package com.tencent.supersonic.headless.api.pojo.request;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.tencent.supersonic.common.pojo.PageBaseReq;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @author: kanedai
|
||||
* @date: 2024/11/24
|
||||
*/
|
||||
@Data
|
||||
public class ValueTaskQueryReq extends PageBaseReq {
|
||||
|
||||
@NotNull
|
||||
private Long itemId;
|
||||
|
||||
private List<String> taskStatusList;
|
||||
|
||||
private String key;
|
||||
}
|
||||
Reference in New Issue
Block a user