mirror of
https://github.com/tencentmusic/supersonic.git
synced 2025-12-14 05:43:51 +00:00
(improvement)(knowledge) support DimValueAliasReq single (#1871)
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package com.tencent.supersonic.headless.api.pojo.request;
|
||||
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import com.tencent.supersonic.headless.api.pojo.DimValueMap;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @author: kanedai
|
||||
* @date: 2024/10/31
|
||||
*/
|
||||
@Data
|
||||
public class DimValueAliasReq {
|
||||
|
||||
@NotNull
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* alias为空代表删除 否则更新
|
||||
*/
|
||||
DimValueMap dimValueMaps;
|
||||
}
|
||||
Reference in New Issue
Block a user