|
@@ -6,8 +6,10 @@ import com.miaxis.common.core.controller.BaseController;
|
|
import com.miaxis.common.core.domain.Response;
|
|
import com.miaxis.common.core.domain.Response;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
+import io.swagger.annotations.ApiParam;
|
|
import lombok.RequiredArgsConstructor;
|
|
import lombok.RequiredArgsConstructor;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
+import org.springframework.web.bind.annotation.PathVariable;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
@@ -36,5 +38,15 @@ public class AppletHomePageDataInfoController extends BaseController {
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 查询首页数据列表--字典参数
|
|
|
|
+ */
|
|
|
|
+ @GetMapping("/dictValueHomePageDataList/{dictValues}")
|
|
|
|
+ @ApiOperation("查询首页数据列表--字典参数")
|
|
|
|
+ public Response dictValueHomePageDataList(@ApiParam(name = "dictValues",value = "字典参数",required = true)
|
|
|
|
+ @PathVariable("dictValues") String[] dictValues){
|
|
|
|
+ return homePageDataInfoService.dictValueHomePageDataList(dictValues);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
}
|
|
}
|