提交代码
This commit is contained in:
parent
2f07f6d4bb
commit
7f61212cbd
|
@ -57,6 +57,16 @@ public class SysScaleController extends BaseController {
|
|||
ExcelUtil.exportExcel(list, "心理测评量", SysScaleVo.class, response);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询所有量表
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@GetMapping("/findAll")
|
||||
public R<List<SysScaleVo>> findAll() {
|
||||
return R.ok(sysScaleService.queryList(new SysScaleBo()));
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取心理测评量详细信息
|
||||
*
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
package org.dromara.scale.mapper;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
import org.dromara.scale.domain.SysScalePublish;
|
||||
import org.dromara.scale.domain.vo.SysScalePublishVo;
|
||||
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus;
|
||||
|
@ -10,6 +11,7 @@ import org.dromara.common.mybatis.core.mapper.BaseMapperPlus;
|
|||
* @author CJW
|
||||
* @date 2024-04-07
|
||||
*/
|
||||
@Mapper
|
||||
public interface SysScalePublishMapper extends BaseMapperPlus<SysScalePublish, SysScalePublishVo> {
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue