| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 | package ${bussiPackage}.${entityPackage}.controller;import java.util.Arrays;import java.util.List;import java.util.Map;import java.io.IOException;import java.io.UnsupportedEncodingException;import java.net.URLDecoder;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import org.jeecg.common.api.vo.Result;import org.jeecg.common.system.query.QueryGenerator;import org.jeecg.common.aspect.annotation.AutoLog;import org.jeecg.common.util.oConvertUtils;import ${bussiPackage}.${entityPackage}.entity.${entityName};import ${bussiPackage}.${entityPackage}.service.I${entityName}Service;import java.util.Date;import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;import com.baomidou.mybatisplus.core.metadata.IPage;import com.baomidou.mybatisplus.extension.plugins.pagination.Page;import lombok.extern.slf4j.Slf4j;import org.jeecg.common.system.base.controller.JeecgController;import org.jeecgframework.poi.excel.ExcelImportUtil;import org.jeecgframework.poi.excel.def.NormalExcelConstants;import org.jeecgframework.poi.excel.entity.ExportParams;import org.jeecgframework.poi.excel.entity.ImportParams;import org.jeecgframework.poi.excel.view.JeecgEntityExcelView;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.*;import org.springframework.web.multipart.MultipartFile;import org.springframework.web.multipart.MultipartHttpServletRequest;import org.springframework.web.servlet.ModelAndView;import com.alibaba.fastjson.JSON;import io.swagger.annotations.Api;import io.swagger.annotations.ApiOperation; /** * @Description: ${tableVo.ftlDescription} * @Author: jeecg-boot * @Date:   ${.now?string["yyyy-MM-dd"]} * @Version: V1.0 */@Slf4j@Api(tags="${tableVo.ftlDescription}")@RestController@RequestMapping("/${entityPackage}/${entityName?uncap_first}")public class ${entityName}Controller extends JeecgController<${entityName}, I${entityName}Service> {	@Autowired	private I${entityName}Service ${entityName?uncap_first}Service;		/**	 * 分页列表查询	 *	 * @param ${entityName?uncap_first}	 * @param pageNo	 * @param pageSize	 * @param req	 * @return	 */	@AutoLog(value = "${tableVo.ftlDescription}-分页列表查询")	@ApiOperation(value="${tableVo.ftlDescription}-分页列表查询", notes="${tableVo.ftlDescription}-分页列表查询")	@GetMapping(value = "/list")	public Result<?> queryPageList(${entityName} ${entityName?uncap_first},								   @RequestParam(name="pageNo", defaultValue="1") Integer pageNo,								   @RequestParam(name="pageSize", defaultValue="10") Integer pageSize,								   HttpServletRequest req) {		QueryWrapper<${entityName}> queryWrapper = QueryGenerator.initQueryWrapper(${entityName?uncap_first}, req.getParameterMap());		Page<${entityName}> page = new Page<${entityName}>(pageNo, pageSize);		IPage<${entityName}> pageList = ${entityName?uncap_first}Service.page(page, queryWrapper);		return Result.OK(pageList);	}		/**	 * 添加	 *	 * @param ${entityName?uncap_first}	 * @return	 */	@AutoLog(value = "${tableVo.ftlDescription}-添加")	@ApiOperation(value="${tableVo.ftlDescription}-添加", notes="${tableVo.ftlDescription}-添加")	@PostMapping(value = "/add")	public Result<?> add(@RequestBody ${entityName} ${entityName?uncap_first}) {		${entityName?uncap_first}Service.save(${entityName?uncap_first});		return Result.OK("添加成功!");	}		/**	 * 编辑	 *	 * @param ${entityName?uncap_first}	 * @return	 */	@AutoLog(value = "${tableVo.ftlDescription}-编辑")	@ApiOperation(value="${tableVo.ftlDescription}-编辑", notes="${tableVo.ftlDescription}-编辑")	@PostMapping(value = "/edit")	public Result<?> edit(@RequestBody ${entityName} ${entityName?uncap_first}) {		${entityName?uncap_first}Service.updateById(${entityName?uncap_first});		return Result.OK("编辑成功!");	}		/**	 * 通过id删除	 *	 * @param id	 * @return	 */	@AutoLog(value = "${tableVo.ftlDescription}-通过id删除")	@ApiOperation(value="${tableVo.ftlDescription}-通过id删除", notes="${tableVo.ftlDescription}-通过id删除")	@PostMapping(value = "/delete")	public Result<?> delete(@RequestParam(name="id",required=true) String id) {		${entityName?uncap_first}Service.removeById(id);		return Result.OK("删除成功!");	}		/**	 * 批量删除	 *	 * @param ids	 * @return	 */	@AutoLog(value = "${tableVo.ftlDescription}-批量删除")	@ApiOperation(value="${tableVo.ftlDescription}-批量删除", notes="${tableVo.ftlDescription}-批量删除")	@PostMapping(value = "/deleteBatch")	public Result<?> deleteBatch(@RequestParam(name="ids",required=true) String ids) {		this.${entityName?uncap_first}Service.removeByIds(Arrays.asList(ids.split(",")));		return Result.OK("批量删除成功!");	}		/**	 * 通过id查询	 *	 * @param id	 * @return	 */	@AutoLog(value = "${tableVo.ftlDescription}-通过id查询")	@ApiOperation(value="${tableVo.ftlDescription}-通过id查询", notes="${tableVo.ftlDescription}-通过id查询")	@GetMapping(value = "/queryById")	public Result<?> queryById(@RequestParam(name="id",required=true) String id) {		${entityName} ${entityName?uncap_first} = ${entityName?uncap_first}Service.getById(id);		return Result.OK(${entityName?uncap_first});	}  /**   * 导出excel   *   * @param request   * @param ${entityName?uncap_first}   */  @RequestMapping(value = "/exportXls")  public ModelAndView exportXls(HttpServletRequest request, ${entityName} ${entityName?uncap_first}) {      return super.exportXls(request, ${entityName?uncap_first}, ${entityName}.class, "${tableVo.ftlDescription}");  }  /**   * 通过excel导入数据   *   * @param request   * @param response   * @return   */  @RequestMapping(value = "/importExcel", method = RequestMethod.POST)  public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {      return super.importExcel(request, response, ${entityName}.class);  }}
 |