代码拉取完成,页面将自动刷新
同步操作将从 wxd_tony1984/DevelopAssistant 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
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 {
@Autowired
public 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 exception
log.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 exception
log.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 exception
throw new BizException("添加${EntityName}时出错"+ex.getMessage(), ex);
}
return result;
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。