fix:增加指数相关接口

This commit is contained in:
xiaoliuhu
2023-12-19 22:18:43 +08:00
parent 21ea0e9785
commit 8d1408e6d3
3 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package cn.stock.market.infrastructure.api.investing;
import com.alibaba.fastjson.JSONObject;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.List;
@Data
@ApiModel(value = "指数信息")
public class IndiaIndexVo {
@ApiModelProperty(value = "指数详情")
private IndiaStockVO indexVo;
@ApiModelProperty(value = "指数k线")
private List<JSONObject> kLine;
}