|
@@ -31,9 +31,6 @@ var (
|
|
|
// LyIndexList
|
|
|
// @Title 获取指标列表
|
|
|
// @Description 获取指标列表
|
|
|
-// @Param searchParam query string false "搜索参数"
|
|
|
-// @Param PageSize query int true "每页数据条数"
|
|
|
-// @Param CurrentIndex query int true "当前页页码,从1开始"
|
|
|
// @Success 200 {object} []data_manage.BaseFromLyIndexPage
|
|
|
// @router /ly/index/list [get]
|
|
|
func (this *BaseFromLyIndexController) LyIndexList() {
|
|
@@ -82,9 +79,6 @@ func (this *BaseFromLyIndexController) LyIndexList() {
|
|
|
// LyIndexDataList
|
|
|
// @Title 获取指标对应的数据列表
|
|
|
// @Description 获取指标对应的数据列表
|
|
|
-// @Param indexId query int true "指标ID"
|
|
|
-// @Param PageSize query int true "每页数据条数"
|
|
|
-// @Param CurrentIndex query int true "当前页页码,从1开始"
|
|
|
// @Success 200 {object} data_manage.BaseFromLyDataPage
|
|
|
// @router /ly/index/data/list [get]
|
|
|
func (this *BaseFromLyIndexController) LyIndexDataList() {
|
|
@@ -137,7 +131,6 @@ func (this *BaseFromLyIndexController) LyIndexDataList() {
|
|
|
// LyIndexAddValidate
|
|
|
// @Title 新增加入到指标库校验
|
|
|
// @Description 新增加入到指标库校验
|
|
|
-// @Param req body data_manage.BaseFromLyIndexBatchAddCheckReq true "请求参数"
|
|
|
// @Success 200 {object} []data_manage.IndexCheckData
|
|
|
// @router /ly/index/add/validate [post]
|
|
|
func (this *BaseFromLyIndexController) LyIndexAddValidate() {
|
|
@@ -185,7 +178,6 @@ func (this *BaseFromLyIndexController) LyIndexAddValidate() {
|
|
|
// LyIndexAdd
|
|
|
// @Title 指标添加到指标库
|
|
|
// @Description 指标添加到指标库
|
|
|
-// @Param req body []data_manage.AddEdbInfoReq true "请求参数"
|
|
|
// @Success 200 string "操作成功"
|
|
|
// @router /ly/index/add [post]
|
|
|
func (this *BaseFromLyIndexController) LyIndexAdd() {
|
|
@@ -356,8 +348,6 @@ func (this *BaseFromLyIndexController) LyIndexAdd() {
|
|
|
// LyIndexDataExport
|
|
|
// @Title 导出指标数据
|
|
|
// @Description 导出指标数据
|
|
|
-// @Param IndexCode query string false "指标编码"
|
|
|
-// @Param ClassifyId query int false "分类ID"
|
|
|
// @Success 200 string "操作成功"
|
|
|
// @router /ly/index/data/export [get]
|
|
|
func (this *BaseFromLyIndexController) LyIndexDataExport() {
|