master
zhang chengzhi 2024-08-22 16:57:33 +08:00
parent 767bdbbf8c
commit eb2870bb36
2 changed files with 1 additions and 11 deletions

View File

@ -47,7 +47,7 @@ public class EtlRuleController {
}
@PostMapping("/List")
@PostMapping("/list")
public Result<List<EtlRuleResp>> selectList(@Validated @RequestBody EtlRuleListReq req){
List<EtlRuleResp> list = etlRuleService.selectList(req);

View File

@ -19,15 +19,5 @@ import org.apache.ibatis.annotations.Select;
@Mapper
public interface EtlRuleMapper extends BaseMapper<EtlRule> {
/**
*
*
* @param page
* @param wrapper
* @return
*/
@Select("SELECT * FROM etl_rule")
IPage<EtlRule> selectByPage(IPage<EtlRule> page , @Param(Constants.WRAPPER) Wrapper<EtlRule> wrapper);
}