mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-13 13:07:32 +00:00
opt createDimension and add createBatchTag (#803)
This commit is contained in:
@@ -8,6 +8,13 @@ public class MetaBatchReq {
|
||||
|
||||
private List<Long> ids;
|
||||
|
||||
private List<String> bizNames;
|
||||
|
||||
private List<Long> modelIds;
|
||||
|
||||
/**
|
||||
* 最后变更的状态
|
||||
*/
|
||||
private Integer status;
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
package com.tencent.supersonic.headless.api.pojo.request;
|
||||
|
||||
|
||||
import com.tencent.supersonic.headless.api.pojo.SchemaElementType;
|
||||
import lombok.Data;
|
||||
import lombok.ToString;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
import java.util.List;
|
||||
|
||||
@ToString
|
||||
@Data
|
||||
public class TagBatchCreateReq {
|
||||
@NotNull
|
||||
private Long modelId;
|
||||
private SchemaElementType type;
|
||||
private List<Long> itemIds;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user