mirror of
https://github.com/CodePhiliaX/Chat2DB.git
synced 2025-07-31 11:42:41 +08:00
Fix some team project bugs
This commit is contained in:
@ -0,0 +1,23 @@
|
||||
package ai.chat2db.server.domain.api.param.dashboard;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.experimental.SuperBuilder;
|
||||
|
||||
/**
|
||||
* selectro
|
||||
*
|
||||
* @author Jiaju Zhuang
|
||||
*/
|
||||
@Data
|
||||
@SuperBuilder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class DashboardSelector {
|
||||
|
||||
/**
|
||||
* 图表ID列表
|
||||
*/
|
||||
private Boolean chartIds;
|
||||
}
|
@ -45,6 +45,7 @@ public interface DashboardService {
|
||||
* 查询一条数据
|
||||
*
|
||||
* @param param
|
||||
* @param selector
|
||||
* @return
|
||||
*/
|
||||
DataResult<Dashboard> queryExistent(@NotNull DashboardQueryParam param);
|
||||
|
Reference in New Issue
Block a user