|
|
@ -78,7 +78,7 @@ public class ${entityName}ServiceImpl extends ServiceImpl<${entityName}Mapper, $
|
|
|
|
* 全部
|
|
|
|
* 全部
|
|
|
|
* return
|
|
|
|
* return
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public AjaxResult listAll(){
|
|
|
|
public AjaxResult listAll(Query${entityName}VO query${entityName}VO){
|
|
|
|
List<${entityName}DTO> list=new ArrayList();
|
|
|
|
List<${entityName}DTO> list=new ArrayList();
|
|
|
|
QueryWrapper<${entityName}> queryWrapper=new QueryWrapper();
|
|
|
|
QueryWrapper<${entityName}> queryWrapper=new QueryWrapper();
|
|
|
|
List<${entityName}> dbEntityList = this.list(queryWrapper);
|
|
|
|
List<${entityName}> dbEntityList = this.list(queryWrapper);
|
|
|
@ -93,7 +93,7 @@ public class ${entityName}ServiceImpl extends ServiceImpl<${entityName}Mapper, $
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 获取详情信息
|
|
|
|
* 详情
|
|
|
|
* return
|
|
|
|
* return
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public AjaxResult get${entityName}Detail(String id){
|
|
|
|
public AjaxResult get${entityName}Detail(String id){
|
|
|
|