超保姆级根据数据动态生成CheckBox复选框antVue

前言

一、后台

1.实体

应该不用我多说

@Table(name = "表名")
public class 实体名{

    @Column(name = "字段名")
    private 类型 字段名;
    ......
    同上
}

2.接口

就是定义一个要干什么的方法

public interface 接口名 extends Mapper<实体名> {
    List<实体名> 方法名(Map params);
}

3.XML

方法怎么干的具体实现(增删改查-又名:CRUD)
别到时面试官问你CRUD,你说你没听过哦
接口和实体的路径知道吧,右键接口或者实体,选择copy reference


    
        
        ......
        同上
    
    

4.接口实现类

TableResultResponse 是分页的东西

public class 接口实现类名{
    @Autowired
    private 接口名 接口名小写;
        public TableResultResponse 接口实现类方法名(Query query){
        Page result = PageHelper.startPage(query.getPageNo(),query.getPageSize());
        List<实体名> list = 接口名小写.方法名(query);//这应该是主要一行代码的前后是分页的对象
        return new TableResultResponse(
                result.getPageSize(),result.getPageNum(),result.getPages(),result.getTotal(),list
        );
    }
} 
 

5.控制层

@RestController
@RequestMapping("起个路径名")
public class 控制层名 extends{
    @Autowired
    private 接口实现类名 接口实现类名小写;
    @RequestMapping(value = "再起个路径名",method = RequestMethod.GET)
    public TableResultResponse 方法名(@RequestParam Map params){
        Query query = new Query(params);
        return 接口实现类名小写.接口实现类方法名(query);
    }
}

前台

1.JS

const api = {
    方法名: '路径'//后台的路径
}
export function 再起个方法名(parameter) {
  return axios({
    url: api.上边的方法名,
    method: 'get',
    params: parameter
  })
}

2.VUE