28 changed files with 857 additions and 24 deletions
@ -0,0 +1,104 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.inspectionslog; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
import org.springframework.validation.annotation.Validated; |
||||||
|
import org.springframework.security.access.prepost.PreAuthorize; |
||||||
|
import io.swagger.v3.oas.annotations.tags.Tag; |
||||||
|
import io.swagger.v3.oas.annotations.Parameter; |
||||||
|
import io.swagger.v3.oas.annotations.Operation; |
||||||
|
|
||||||
|
import java.util.*; |
||||||
|
import java.io.IOException; |
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageParam; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.CommonResult; |
||||||
|
import cn.iocoder.yudao.framework.common.util.object.BeanUtils; |
||||||
|
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success; |
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.excel.core.util.ExcelUtils; |
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.apilog.core.annotation.ApiAccessLog; |
||||||
|
import static cn.iocoder.yudao.framework.apilog.core.enums.OperateTypeEnum.*; |
||||||
|
|
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.inspectionslog.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.inspectionslog.InspectionsLogDO; |
||||||
|
import cn.iocoder.yudao.module.system.service.inspectionslog.InspectionsLogService; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
import javax.servlet.http.HttpServletResponse; |
||||||
|
import javax.validation.Valid; |
||||||
|
|
||||||
|
@Tag(name = "管理后台 - 检查结果日志") |
||||||
|
@RestController |
||||||
|
@RequestMapping("/system/inspections-log") |
||||||
|
@Validated |
||||||
|
public class InspectionsLogController { |
||||||
|
|
||||||
|
@Resource |
||||||
|
private InspectionsLogService inspectionsLogService; |
||||||
|
|
||||||
|
@PostMapping("/create") |
||||||
|
@Operation(summary = "创建检查结果日志") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:inspections-log:create')") |
||||||
|
public CommonResult<Long> createInspectionsLog(@Valid @RequestBody InspectionsLogSaveReqVO createReqVO) { |
||||||
|
return success(inspectionsLogService.createInspectionsLog(createReqVO)); |
||||||
|
} |
||||||
|
|
||||||
|
@PutMapping("/update") |
||||||
|
@Operation(summary = "更新检查结果日志") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:inspections-log:update')") |
||||||
|
public CommonResult<Boolean> updateInspectionsLog(@Valid @RequestBody InspectionsLogSaveReqVO updateReqVO) { |
||||||
|
inspectionsLogService.updateInspectionsLog(updateReqVO); |
||||||
|
return success(true); |
||||||
|
} |
||||||
|
|
||||||
|
@DeleteMapping("/delete") |
||||||
|
@Operation(summary = "删除检查结果日志") |
||||||
|
@Parameter(name = "id", description = "编号", required = true) |
||||||
|
@PreAuthorize("@ss.hasPermission('system:inspections-log:delete')") |
||||||
|
public CommonResult<Boolean> deleteInspectionsLog(@RequestParam("id") Long id) { |
||||||
|
inspectionsLogService.deleteInspectionsLog(id); |
||||||
|
return success(true); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/get") |
||||||
|
@Operation(summary = "获得检查结果日志") |
||||||
|
@Parameter(name = "id", description = "编号", required = true, example = "1024") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:inspections-log:query')") |
||||||
|
public CommonResult<InspectionsLogRespVO> getInspectionsLog(@RequestParam("id") Long id) { |
||||||
|
InspectionsLogDO inspectionsLog = inspectionsLogService.getInspectionsLog(id); |
||||||
|
return success(BeanUtils.toBean(inspectionsLog, InspectionsLogRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/page") |
||||||
|
@Operation(summary = "获得检查结果日志分页") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:inspections-log:query')") |
||||||
|
public CommonResult<PageResult<InspectionsLogRespVO>> getInspectionsLogPage(@Valid InspectionsLogPageReqVO pageReqVO) { |
||||||
|
PageResult<InspectionsLogDO> pageResult = inspectionsLogService.getInspectionsLogPage(pageReqVO); |
||||||
|
return success(BeanUtils.toBean(pageResult, InspectionsLogRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/list") |
||||||
|
@Operation(summary = "pc端获得检查状态列表") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:inspections-log:query')") |
||||||
|
public CommonResult<List<InspectionsLogRespVO>> getInspectionsLogList(@Valid InspectionsLogPageReqVO pageReqVO) { |
||||||
|
List<InspectionsLogDO> list = inspectionsLogService.list(pageReqVO); |
||||||
|
return success(BeanUtils.toBean(list, InspectionsLogRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/export-excel") |
||||||
|
@Operation(summary = "导出检查结果日志 Excel") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:inspections-log:export')") |
||||||
|
@ApiAccessLog(operateType = EXPORT) |
||||||
|
public void exportInspectionsLogExcel(@Valid InspectionsLogPageReqVO pageReqVO, |
||||||
|
HttpServletResponse response) throws IOException { |
||||||
|
pageReqVO.setPageSize(PageParam.PAGE_SIZE_NONE); |
||||||
|
List<InspectionsLogDO> list = inspectionsLogService.getInspectionsLogPage(pageReqVO).getList(); |
||||||
|
// 导出 Excel
|
||||||
|
ExcelUtils.write(response, "检查结果日志.xls", "数据", InspectionsLogRespVO.class, |
||||||
|
BeanUtils.toBean(list, InspectionsLogRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,40 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.inspectionslog.vo; |
||||||
|
|
||||||
|
import lombok.*; |
||||||
|
import java.util.*; |
||||||
|
import io.swagger.v3.oas.annotations.media.Schema; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageParam; |
||||||
|
import org.springframework.format.annotation.DateTimeFormat; |
||||||
|
import java.time.LocalDateTime; |
||||||
|
|
||||||
|
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND; |
||||||
|
|
||||||
|
@Schema(description = "管理后台 - 检查结果日志分页 Request VO") |
||||||
|
@Data |
||||||
|
@EqualsAndHashCode(callSuper = true) |
||||||
|
@ToString(callSuper = true) |
||||||
|
public class InspectionsLogPageReqVO extends PageParam { |
||||||
|
|
||||||
|
@Schema(description = "检查记录id", example = "18375") |
||||||
|
private Long inspectionsId; |
||||||
|
|
||||||
|
@Schema(description = "检查状态1.签到2.通过.3整改", example = "2") |
||||||
|
private Integer status; |
||||||
|
|
||||||
|
@Schema(description = "检查人员签到位置信息,格式:经纬度") |
||||||
|
private String gpsLocation; |
||||||
|
|
||||||
|
@Schema(description = "反馈信息") |
||||||
|
private String feedBack; |
||||||
|
|
||||||
|
@Schema(description = "协同人员姓名", example = "张三") |
||||||
|
private String cooperateWithName; |
||||||
|
|
||||||
|
@Schema(description = "执法人员姓名", example = "李四") |
||||||
|
private String inspectName; |
||||||
|
|
||||||
|
@Schema(description = "创建时间") |
||||||
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
||||||
|
private LocalDateTime[] createTime; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,50 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.inspectionslog.vo; |
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema; |
||||||
|
import lombok.*; |
||||||
|
import java.util.*; |
||||||
|
import org.springframework.format.annotation.DateTimeFormat; |
||||||
|
import java.time.LocalDateTime; |
||||||
|
import com.alibaba.excel.annotation.*; |
||||||
|
import cn.iocoder.yudao.framework.excel.core.annotations.DictFormat; |
||||||
|
import cn.iocoder.yudao.framework.excel.core.convert.DictConvert; |
||||||
|
|
||||||
|
@Schema(description = "管理后台 - 检查结果日志 Response VO") |
||||||
|
@Data |
||||||
|
@ExcelIgnoreUnannotated |
||||||
|
public class InspectionsLogRespVO { |
||||||
|
|
||||||
|
@Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "2308") |
||||||
|
@ExcelProperty("主键") |
||||||
|
private Long id; |
||||||
|
|
||||||
|
@Schema(description = "检查记录id", requiredMode = Schema.RequiredMode.REQUIRED, example = "18375") |
||||||
|
@ExcelProperty("检查记录id") |
||||||
|
private Long inspectionsId; |
||||||
|
|
||||||
|
@Schema(description = "检查状态1.签到2.通过.3整改", example = "2") |
||||||
|
@ExcelProperty(value = "检查状态1.签到2.通过.3整改", converter = DictConvert.class) |
||||||
|
@DictFormat("Inspections_status") // TODO 代码优化:建议设置到对应的 DictTypeConstants 枚举类中
|
||||||
|
private Integer status; |
||||||
|
|
||||||
|
@Schema(description = "检查人员签到位置信息,格式:经纬度") |
||||||
|
@ExcelProperty("检查人员签到位置信息,格式:经纬度") |
||||||
|
private String gpsLocation; |
||||||
|
|
||||||
|
@Schema(description = "反馈信息") |
||||||
|
@ExcelProperty("反馈信息") |
||||||
|
private String feedBack; |
||||||
|
|
||||||
|
@Schema(description = "协同人员姓名", example = "张三") |
||||||
|
@ExcelProperty("协同人员姓名") |
||||||
|
private String cooperateWithName; |
||||||
|
|
||||||
|
@Schema(description = "执法人员姓名", example = "李四") |
||||||
|
@ExcelProperty("执法人员姓名") |
||||||
|
private String inspectName; |
||||||
|
|
||||||
|
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) |
||||||
|
@ExcelProperty("创建时间") |
||||||
|
private LocalDateTime createTime; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,35 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.inspectionslog.vo; |
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema; |
||||||
|
import lombok.*; |
||||||
|
|
||||||
|
import javax.validation.constraints.NotNull; |
||||||
|
import java.util.*; |
||||||
|
|
||||||
|
@Schema(description = "管理后台 - 检查结果日志新增/修改 Request VO") |
||||||
|
@Data |
||||||
|
public class InspectionsLogSaveReqVO { |
||||||
|
|
||||||
|
@Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "2308") |
||||||
|
private Long id; |
||||||
|
|
||||||
|
@Schema(description = "检查记录id", requiredMode = Schema.RequiredMode.REQUIRED, example = "18375") |
||||||
|
@NotNull(message = "检查记录id不能为空") |
||||||
|
private Long inspectionsId; |
||||||
|
|
||||||
|
@Schema(description = "检查状态1.签到2.通过.3整改", example = "2") |
||||||
|
private Integer status; |
||||||
|
|
||||||
|
@Schema(description = "检查人员签到位置信息,格式:经纬度") |
||||||
|
private String gpsLocation; |
||||||
|
|
||||||
|
@Schema(description = "反馈信息") |
||||||
|
private String feedBack; |
||||||
|
|
||||||
|
@Schema(description = "协同人员姓名", example = "张三") |
||||||
|
private String cooperateWithName; |
||||||
|
|
||||||
|
@Schema(description = "执法人员姓名", example = "李四") |
||||||
|
private String inspectName; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,53 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.app.task; |
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.common.pojo.CommonResult; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
||||||
|
import cn.iocoder.yudao.framework.common.util.object.BeanUtils; |
||||||
|
import cn.iocoder.yudao.framework.security.core.util.SecurityFrameworkUtils; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.taskinfo.vo.TaskInfoPageReqVO; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.taskinfo.vo.TaskInfoRespVO; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.taskinfo.vo.TaskInfoSaveReqVO; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.dept.DeptDO; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.taskinfo.TaskInfoDO; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.user.AdminUserDO; |
||||||
|
import cn.iocoder.yudao.module.system.service.dept.DeptService; |
||||||
|
import cn.iocoder.yudao.module.system.service.taskinfo.TaskInfoService; |
||||||
|
import cn.iocoder.yudao.module.system.service.user.AdminUserService; |
||||||
|
import io.swagger.v3.oas.annotations.Operation; |
||||||
|
import io.swagger.v3.oas.annotations.Parameter; |
||||||
|
import io.swagger.v3.oas.annotations.tags.Tag; |
||||||
|
import org.springframework.security.access.prepost.PreAuthorize; |
||||||
|
import org.springframework.validation.annotation.Validated; |
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
import javax.validation.Valid; |
||||||
|
|
||||||
|
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success; |
||||||
|
|
||||||
|
@Tag(name = "管理后台 - 任务表,用于存储所有的任务信息,任务可由不同用户创建并管理。") |
||||||
|
@RestController |
||||||
|
@RequestMapping("/system/app/task-info") |
||||||
|
@Validated |
||||||
|
public class AppTaskController { |
||||||
|
@Resource |
||||||
|
private TaskInfoService taskInfoService; |
||||||
|
@Resource |
||||||
|
private AdminUserService adminUserService; |
||||||
|
@Resource |
||||||
|
private DeptService deptService; |
||||||
|
|
||||||
|
@GetMapping("/page") |
||||||
|
@Operation(summary = "获得任务表,用于存储所有的任务信息,任务可由不同用户创建并管理。分页") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:task-info:query')") |
||||||
|
public CommonResult<PageResult<TaskInfoRespVO>> getTaskInfoPage(@Valid TaskInfoPageReqVO pageReqVO) { |
||||||
|
PageResult<TaskInfoDO> pageResult = taskInfoService.getTaskInfoPage(pageReqVO); |
||||||
|
AdminUserDO user = adminUserService.getUser(SecurityFrameworkUtils.getLoginUserId()); |
||||||
|
DeptDO dep= deptService.getDept( user.getDeptId()); |
||||||
|
pageResult.getList().forEach(item->{ |
||||||
|
item.setPublishDep(dep.getName()); |
||||||
|
item.setCreateName(adminUserService.getUser(Long.valueOf(item.getCreator())).getRealName()); |
||||||
|
}); |
||||||
|
return success(BeanUtils.toBean(pageResult, TaskInfoRespVO.class)); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,58 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.dal.dataobject.inspectionslog; |
||||||
|
|
||||||
|
import com.sun.xml.bind.v2.TODO; |
||||||
|
import lombok.*; |
||||||
|
import java.util.*; |
||||||
|
import java.time.LocalDateTime; |
||||||
|
import java.time.LocalDateTime; |
||||||
|
import com.baomidou.mybatisplus.annotation.*; |
||||||
|
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO; |
||||||
|
|
||||||
|
/** |
||||||
|
* 检查结果日志 DO |
||||||
|
* |
||||||
|
* @author 芋道源码 |
||||||
|
*/ |
||||||
|
@TableName("inspections_log") |
||||||
|
@KeySequence("inspections_log_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
|
||||||
|
@Data |
||||||
|
@EqualsAndHashCode(callSuper = true) |
||||||
|
@ToString(callSuper = true) |
||||||
|
@Builder |
||||||
|
@NoArgsConstructor |
||||||
|
@AllArgsConstructor |
||||||
|
public class InspectionsLogDO extends BaseDO { |
||||||
|
|
||||||
|
/** |
||||||
|
* 主键 |
||||||
|
*/ |
||||||
|
@TableId |
||||||
|
private Long id; |
||||||
|
/** |
||||||
|
* 检查记录id |
||||||
|
*/ |
||||||
|
private Long inspectionsId; |
||||||
|
/** |
||||||
|
* 检查状态1.签到2.通过.3整改 |
||||||
|
* |
||||||
|
* 枚举 {@link TODO Inspections_status 对应的类} |
||||||
|
*/ |
||||||
|
private Integer status; |
||||||
|
/** |
||||||
|
* 检查人员签到位置信息,格式:经纬度 |
||||||
|
*/ |
||||||
|
private String gpsLocation; |
||||||
|
/** |
||||||
|
* 反馈信息 |
||||||
|
*/ |
||||||
|
private String feedBack; |
||||||
|
/** |
||||||
|
* 协同人员姓名 |
||||||
|
*/ |
||||||
|
private String cooperateWithName; |
||||||
|
/** |
||||||
|
* 执法人员姓名 |
||||||
|
*/ |
||||||
|
private String inspectName; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,32 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.dal.mysql.inspectionslog; |
||||||
|
|
||||||
|
import java.util.*; |
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
||||||
|
import cn.iocoder.yudao.framework.mybatis.core.query.LambdaQueryWrapperX; |
||||||
|
import cn.iocoder.yudao.framework.mybatis.core.mapper.BaseMapperX; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.inspectionslog.InspectionsLogDO; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.inspectionslog.vo.*; |
||||||
|
|
||||||
|
/** |
||||||
|
* 检查结果日志 Mapper |
||||||
|
* |
||||||
|
* @author 芋道源码 |
||||||
|
*/ |
||||||
|
@Mapper |
||||||
|
public interface InspectionsLogMapper extends BaseMapperX<InspectionsLogDO> { |
||||||
|
|
||||||
|
default PageResult<InspectionsLogDO> selectPage(InspectionsLogPageReqVO reqVO) { |
||||||
|
return selectPage(reqVO, new LambdaQueryWrapperX<InspectionsLogDO>() |
||||||
|
.eqIfPresent(InspectionsLogDO::getInspectionsId, reqVO.getInspectionsId()) |
||||||
|
.eqIfPresent(InspectionsLogDO::getStatus, reqVO.getStatus()) |
||||||
|
.eqIfPresent(InspectionsLogDO::getGpsLocation, reqVO.getGpsLocation()) |
||||||
|
.eqIfPresent(InspectionsLogDO::getFeedBack, reqVO.getFeedBack()) |
||||||
|
.likeIfPresent(InspectionsLogDO::getCooperateWithName, reqVO.getCooperateWithName()) |
||||||
|
.likeIfPresent(InspectionsLogDO::getInspectName, reqVO.getInspectName()) |
||||||
|
.betweenIfPresent(InspectionsLogDO::getCreateTime, reqVO.getCreateTime()) |
||||||
|
.orderByDesc(InspectionsLogDO::getId)); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,58 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.service.inspectionslog; |
||||||
|
|
||||||
|
import java.util.*; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.inspectionslog.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.inspectionslog.InspectionsLogDO; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageParam; |
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
||||||
|
|
||||||
|
import javax.validation.Valid; |
||||||
|
|
||||||
|
/** |
||||||
|
* 检查结果日志 Service 接口 |
||||||
|
* |
||||||
|
* @author 芋道源码 |
||||||
|
*/ |
||||||
|
public interface InspectionsLogService { |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建检查结果日志 |
||||||
|
* |
||||||
|
* @param createReqVO 创建信息 |
||||||
|
* @return 编号 |
||||||
|
*/ |
||||||
|
Long createInspectionsLog(@Valid InspectionsLogSaveReqVO createReqVO); |
||||||
|
|
||||||
|
/** |
||||||
|
* 更新检查结果日志 |
||||||
|
* |
||||||
|
* @param updateReqVO 更新信息 |
||||||
|
*/ |
||||||
|
void updateInspectionsLog(@Valid InspectionsLogSaveReqVO updateReqVO); |
||||||
|
|
||||||
|
/** |
||||||
|
* 删除检查结果日志 |
||||||
|
* |
||||||
|
* @param id 编号 |
||||||
|
*/ |
||||||
|
void deleteInspectionsLog(Long id); |
||||||
|
|
||||||
|
/** |
||||||
|
* 获得检查结果日志 |
||||||
|
* |
||||||
|
* @param id 编号 |
||||||
|
* @return 检查结果日志 |
||||||
|
*/ |
||||||
|
InspectionsLogDO getInspectionsLog(Long id); |
||||||
|
|
||||||
|
/** |
||||||
|
* 获得检查结果日志分页 |
||||||
|
* |
||||||
|
* @param pageReqVO 分页查询 |
||||||
|
* @return 检查结果日志分页 |
||||||
|
*/ |
||||||
|
PageResult<InspectionsLogDO> getInspectionsLogPage(InspectionsLogPageReqVO pageReqVO); |
||||||
|
|
||||||
|
List<InspectionsLogDO> list(InspectionsLogPageReqVO pageReqVO); |
||||||
|
} |
@ -0,0 +1,83 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.service.inspectionslog; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
import org.springframework.validation.annotation.Validated; |
||||||
|
import org.springframework.transaction.annotation.Transactional; |
||||||
|
|
||||||
|
import java.util.*; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.inspectionslog.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.inspectionslog.InspectionsLogDO; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageParam; |
||||||
|
import cn.iocoder.yudao.framework.common.util.object.BeanUtils; |
||||||
|
|
||||||
|
import cn.iocoder.yudao.module.system.dal.mysql.inspectionslog.InspectionsLogMapper; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
|
||||||
|
import static cn.iocoder.yudao.framework.common.exception.util.ServiceExceptionUtil.exception; |
||||||
|
import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.*; |
||||||
|
|
||||||
|
/** |
||||||
|
* 检查结果日志 Service 实现类 |
||||||
|
* |
||||||
|
* @author 芋道源码 |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
@Validated |
||||||
|
public class InspectionsLogServiceImpl implements InspectionsLogService { |
||||||
|
|
||||||
|
@Resource |
||||||
|
private InspectionsLogMapper inspectionsLogMapper; |
||||||
|
|
||||||
|
@Override |
||||||
|
public Long createInspectionsLog(InspectionsLogSaveReqVO createReqVO) { |
||||||
|
// 插入
|
||||||
|
InspectionsLogDO inspectionsLog = BeanUtils.toBean(createReqVO, InspectionsLogDO.class); |
||||||
|
inspectionsLogMapper.insert(inspectionsLog); |
||||||
|
// 返回
|
||||||
|
return inspectionsLog.getId(); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void updateInspectionsLog(InspectionsLogSaveReqVO updateReqVO) { |
||||||
|
// 校验存在
|
||||||
|
validateInspectionsLogExists(updateReqVO.getId()); |
||||||
|
// 更新
|
||||||
|
InspectionsLogDO updateObj = BeanUtils.toBean(updateReqVO, InspectionsLogDO.class); |
||||||
|
inspectionsLogMapper.updateById(updateObj); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void deleteInspectionsLog(Long id) { |
||||||
|
// 校验存在
|
||||||
|
validateInspectionsLogExists(id); |
||||||
|
// 删除
|
||||||
|
inspectionsLogMapper.deleteById(id); |
||||||
|
} |
||||||
|
|
||||||
|
private void validateInspectionsLogExists(Long id) { |
||||||
|
if (inspectionsLogMapper.selectById(id) == null) { |
||||||
|
throw exception(INSPECTIONS_LOG_NOT_EXISTS); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public InspectionsLogDO getInspectionsLog(Long id) { |
||||||
|
return inspectionsLogMapper.selectById(id); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public PageResult<InspectionsLogDO> getInspectionsLogPage(InspectionsLogPageReqVO pageReqVO) { |
||||||
|
return inspectionsLogMapper.selectPage(pageReqVO); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public List<InspectionsLogDO> list(InspectionsLogPageReqVO pageReqVO) { |
||||||
|
QueryWrapper<InspectionsLogDO> wrapper = new QueryWrapper<>(); |
||||||
|
wrapper.eq("inspections_id", pageReqVO.getInspectionsId()); |
||||||
|
return inspectionsLogMapper.selectList(wrapper); |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue