|
@@ -97,4 +97,18 @@ public class JnbAskTypeController extends BaseController {
|
|
|
public R remove(@PathVariable String[] ids) {
|
|
|
return R.ok(jnbQuestionTypeService.deleteJnbQuestionTypeByIds(ids));
|
|
|
}
|
|
|
+
|
|
|
+ /*
|
|
|
+ * 小程序-查询类型列表
|
|
|
+ *
|
|
|
+ * @author 韩福成
|
|
|
+ * @date 2024/3/4 10:31
|
|
|
+ */
|
|
|
+ @GetMapping("/typeList")
|
|
|
+ public TableDataInfo typeList(JnbQuestionType jnbQuestionType) {
|
|
|
+ startPage();
|
|
|
+ jnbQuestionType.setWhetherShow("Y");
|
|
|
+ List<JnbQuestionType> list = jnbQuestionTypeService.selectJnbQuestionTypeList(jnbQuestionType);
|
|
|
+ return getDataTable(list);
|
|
|
+ }
|
|
|
}
|