This action will force synchronization from wxd_tony1984/DevelopAssistant, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
package ${PakageName}.service.impl;import java.util.Date;import java.util.List;import java.util.Map;import java.util.UUID;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.stereotype.Service;import org.springframework.transaction.annotation.Transactional;import com.alibaba.druid.sql.visitor.functions.Now;import com.baomidou.mybatisplus.core.mapper.BaseMapper;import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;import ${PakageName}.exception.BizException;import ${PakageName}.entity.${EntityName}Entity;import ${PakageName}.mapper.I${EntityName}Mapper;import ${PakageName}.demo.service.I${EntityName}Service;import lombok.extern.log4j.Log4j2;@Log4j2@Service("${EntityName}Service")public class ${EntityName}ServiceImpl extends ServiceImpl<I${EntityName}Mapper, ${EntityName}Entity> implements I${EntityName}Service {@Autowiredpublic I${EntityName}Mapper ${InstanceName}Mapper;/***分页获取数据*/@SuppressWarnings("unchecked")public Page<Map<String, Object>> query${EntityName}PageList(Map<String,Object> params) throws BizException{Page<Map<String, Object>> result = null;try {int pageSize=(int)params.get("pageSize");int currentPage=(int)params.get("currentPage");result = new Page<>(currentPage,pageSize);List<Map<String, Object>> records = ${InstanceName}Mapper.select${EntityName}PageList(result,params);result.setRecords(records);}catch (Exception e) {// TODO: handle exceptionlog.error("查询 query${EntityName}PageList 数据出错:"+whereMap,e);throw new BizException("查询 query${EntityName}PageList 数据出错:"+e.getMessage(),e);}return result;}/***获取数据列表*/public List<Map<String,Object>> query${EntityName}ArrayList(Map<String,Object> params) throws BizException{List<Map<String,Object>> result = null;try {result = ${InstanceName}Mapper.select${EntityName}ArrayList(params);}catch (Exception e) {// TODO: handle exceptionlog.error("查询 query${EntityName}PageList 数据出错:"+whereMap,e);throw new BizException("查询 query${EntityName}PageList 数据出错:"+e.getMessage(),e);}return result;}@Transactional(rollbackFor = Exception.class)public String add${EntityName}(${EntityName}Entity entity) throws BizException {String result="";try {//添加数据entity.insert();}catch (Exception ex) {// TODO: handle exceptionthrow new BizException("添加${EntityName}时出错"+ex.getMessage(), ex);}return result;}}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。