# alispringmanagement **Repository Path**: ssssllll/alispringmanagement ## Basic Information - **Project Name**: alispringmanagement - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-01-27 - **Last Updated**: 2021-08-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 文档 intelij插件 ` free mybatis plugin ` 分页查询 >总条数 >每页条数(页面大小) >页数 >总条数 = 页数 * 每页条数 ``` 对于layui 接口地址。默认会自动传递两个参数:?page=1&limit=30(该参数可通过 request 自定义) page 代表当前页码、limit 代表每页数据量 ``` ```java ``` 根据数据库读出不同字段渲染出不同的显示 ``` {field: 'status', title: '用户状态', width:80,templet: function(d){ return d.status == '1' ? '启动' : '禁用' }} ``` ## spring boot热部署 参考 `https://blog.csdn.net/dyllove98/article/details/8866357`