Browse Source
# Conflicts: # yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/AuthController.javamaster
44 changed files with 1191 additions and 40 deletions
@ -0,0 +1,95 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.fileInfo; |
||||||
|
|
||||||
|
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.fileInfo.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.fileInfo.FileInfoDO; |
||||||
|
import cn.iocoder.yudao.module.system.service.fileInfo.FileInfoService; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
import javax.servlet.http.HttpServletResponse; |
||||||
|
import javax.validation.Valid; |
||||||
|
|
||||||
|
@Tag(name = "管理后台 - 附件信息") |
||||||
|
@RestController |
||||||
|
@RequestMapping("/system/file-info") |
||||||
|
@Validated |
||||||
|
public class FileInfoController { |
||||||
|
|
||||||
|
@Resource |
||||||
|
private FileInfoService fileInfoService; |
||||||
|
|
||||||
|
@PostMapping("/create") |
||||||
|
@Operation(summary = "创建附件信息") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:file-info:create')") |
||||||
|
public CommonResult<Long> createFileInfo(@Valid @RequestBody FileInfoSaveReqVO createReqVO) { |
||||||
|
return success(fileInfoService.createFileInfo(createReqVO)); |
||||||
|
} |
||||||
|
|
||||||
|
@PutMapping("/update") |
||||||
|
@Operation(summary = "更新附件信息") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:file-info:update')") |
||||||
|
public CommonResult<Boolean> updateFileInfo(@Valid @RequestBody FileInfoSaveReqVO updateReqVO) { |
||||||
|
fileInfoService.updateFileInfo(updateReqVO); |
||||||
|
return success(true); |
||||||
|
} |
||||||
|
|
||||||
|
@DeleteMapping("/delete") |
||||||
|
@Operation(summary = "删除附件信息") |
||||||
|
@Parameter(name = "id", description = "编号", required = true) |
||||||
|
@PreAuthorize("@ss.hasPermission('system:file-info:delete')") |
||||||
|
public CommonResult<Boolean> deleteFileInfo(@RequestParam("id") Long id) { |
||||||
|
fileInfoService.deleteFileInfo(id); |
||||||
|
return success(true); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/get") |
||||||
|
@Operation(summary = "获得附件信息") |
||||||
|
@Parameter(name = "id", description = "编号", required = true, example = "1024") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:file-info:query')") |
||||||
|
public CommonResult<FileInfoRespVO> getFileInfo(@RequestParam("id") Long id) { |
||||||
|
FileInfoDO fileInfo = fileInfoService.getFileInfo(id); |
||||||
|
return success(BeanUtils.toBean(fileInfo, FileInfoRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/page") |
||||||
|
@Operation(summary = "获得附件信息分页") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:file-info:query')") |
||||||
|
public CommonResult<PageResult<FileInfoRespVO>> getFileInfoPage(@Valid FileInfoPageReqVO pageReqVO) { |
||||||
|
PageResult<FileInfoDO> pageResult = fileInfoService.getFileInfoPage(pageReqVO); |
||||||
|
return success(BeanUtils.toBean(pageResult, FileInfoRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/export-excel") |
||||||
|
@Operation(summary = "导出附件信息 Excel") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:file-info:export')") |
||||||
|
@ApiAccessLog(operateType = EXPORT) |
||||||
|
public void exportFileInfoExcel(@Valid FileInfoPageReqVO pageReqVO, |
||||||
|
HttpServletResponse response) throws IOException { |
||||||
|
pageReqVO.setPageSize(PageParam.PAGE_SIZE_NONE); |
||||||
|
List<FileInfoDO> list = fileInfoService.getFileInfoPage(pageReqVO).getList(); |
||||||
|
// 导出 Excel
|
||||||
|
ExcelUtils.write(response, "附件信息.xls", "数据", FileInfoRespVO.class, |
||||||
|
BeanUtils.toBean(list, FileInfoRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,49 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.fileInfo.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 FileInfoPageReqVO extends PageParam { |
||||||
|
|
||||||
|
@Schema(description = "关联ID(日报/案件/行动...)", example = "16715") |
||||||
|
private String unitId; |
||||||
|
|
||||||
|
@Schema(description = "类型", example = "1") |
||||||
|
private Long type; |
||||||
|
|
||||||
|
@Schema(description = "状态") |
||||||
|
private Long dictData; |
||||||
|
|
||||||
|
@Schema(description = "部门ID", example = "2") |
||||||
|
private Long dictType; |
||||||
|
|
||||||
|
@Schema(description = "文件分组ID", example = "10196") |
||||||
|
private Long groupId; |
||||||
|
|
||||||
|
@Schema(description = "文件权限(英文分号分隔)") |
||||||
|
private String permissions; |
||||||
|
|
||||||
|
@Schema(description = "创建时间") |
||||||
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
||||||
|
private LocalDateTime[] createTime; |
||||||
|
|
||||||
|
@Schema(description = "关联IDString类型") |
||||||
|
private String unitIdStr; |
||||||
|
|
||||||
|
@Schema(description = "目标ID", example = "13176") |
||||||
|
private Long targetId; |
||||||
|
|
||||||
|
@Schema(description = "文件id", example = "19961") |
||||||
|
private Long infraFileId; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,59 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.fileInfo.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.*; |
||||||
|
|
||||||
|
@Schema(description = "管理后台 - 附件信息 Response VO") |
||||||
|
@Data |
||||||
|
@ExcelIgnoreUnannotated |
||||||
|
public class FileInfoRespVO { |
||||||
|
|
||||||
|
@Schema(description = "ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "32022") |
||||||
|
@ExcelProperty("ID") |
||||||
|
private Long id; |
||||||
|
|
||||||
|
@Schema(description = "关联ID(日报/案件/行动...)", example = "16715") |
||||||
|
@ExcelProperty("关联ID(日报/案件/行动...)") |
||||||
|
private String unitId; |
||||||
|
|
||||||
|
@Schema(description = "类型", example = "1") |
||||||
|
@ExcelProperty("类型") |
||||||
|
private Long type; |
||||||
|
|
||||||
|
@Schema(description = "状态") |
||||||
|
@ExcelProperty("状态") |
||||||
|
private Long dictData; |
||||||
|
|
||||||
|
@Schema(description = "部门ID", example = "2") |
||||||
|
@ExcelProperty("部门ID") |
||||||
|
private Long dictType; |
||||||
|
|
||||||
|
@Schema(description = "文件分组ID", example = "10196") |
||||||
|
@ExcelProperty("文件分组ID") |
||||||
|
private Long groupId; |
||||||
|
|
||||||
|
@Schema(description = "文件权限(英文分号分隔)") |
||||||
|
@ExcelProperty("文件权限(英文分号分隔)") |
||||||
|
private String permissions; |
||||||
|
|
||||||
|
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) |
||||||
|
@ExcelProperty("创建时间") |
||||||
|
private LocalDateTime createTime; |
||||||
|
|
||||||
|
@Schema(description = "关联IDString类型") |
||||||
|
@ExcelProperty("关联IDString类型") |
||||||
|
private String unitIdStr; |
||||||
|
|
||||||
|
@Schema(description = "目标ID", example = "13176") |
||||||
|
@ExcelProperty("目标ID") |
||||||
|
private Long targetId; |
||||||
|
|
||||||
|
@Schema(description = "文件id", example = "19961") |
||||||
|
@ExcelProperty("文件id") |
||||||
|
private Long infraFileId; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,41 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.fileInfo.vo; |
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema; |
||||||
|
import lombok.*; |
||||||
|
import java.util.*; |
||||||
|
|
||||||
|
@Schema(description = "管理后台 - 附件信息新增/修改 Request VO") |
||||||
|
@Data |
||||||
|
public class FileInfoSaveReqVO { |
||||||
|
|
||||||
|
@Schema(description = "ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "32022") |
||||||
|
private Long id; |
||||||
|
|
||||||
|
@Schema(description = "关联ID(日报/案件/行动...)", example = "16715") |
||||||
|
private String unitId; |
||||||
|
|
||||||
|
@Schema(description = "类型", example = "1") |
||||||
|
private Long type; |
||||||
|
|
||||||
|
@Schema(description = "状态") |
||||||
|
private Long dictData; |
||||||
|
|
||||||
|
@Schema(description = "部门ID", example = "2") |
||||||
|
private Long dictType; |
||||||
|
|
||||||
|
@Schema(description = "文件分组ID", example = "10196") |
||||||
|
private Long groupId; |
||||||
|
|
||||||
|
@Schema(description = "文件权限(英文分号分隔)") |
||||||
|
private String permissions; |
||||||
|
|
||||||
|
@Schema(description = "关联IDString类型") |
||||||
|
private String unitIdStr; |
||||||
|
|
||||||
|
@Schema(description = "目标ID", example = "13176") |
||||||
|
private Long targetId; |
||||||
|
|
||||||
|
@Schema(description = "文件id", example = "19961") |
||||||
|
private Long infraFileId; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,98 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.userAuditlog; |
||||||
|
|
||||||
|
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.userAuditlog.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.userAuditlog.UserAuditLogDO; |
||||||
|
import cn.iocoder.yudao.module.system.service.userAuditlog.UserAuditLogService; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
import javax.servlet.http.HttpServletResponse; |
||||||
|
import javax.validation.Valid; |
||||||
|
|
||||||
|
@Tag(name = "管理后台 - 用户审核日志") |
||||||
|
@RestController |
||||||
|
@RequestMapping("/system/user-audit-log") |
||||||
|
@Validated |
||||||
|
public class UserAuditLogController { |
||||||
|
|
||||||
|
@Resource |
||||||
|
private UserAuditLogService userAuditLogService; |
||||||
|
|
||||||
|
@PostMapping("/create") |
||||||
|
@Operation(summary = "创建用户审核日志") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:user-audit-log:create')") |
||||||
|
public CommonResult<Long> createUserAuditLog(@Valid @RequestBody UserAuditLogSaveReqVO createReqVO) { |
||||||
|
return success(userAuditLogService.createUserAuditLog(createReqVO)); |
||||||
|
} |
||||||
|
|
||||||
|
@PutMapping("/update") |
||||||
|
@Operation(summary = "更新用户审核日志") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:user-audit-log:update')") |
||||||
|
public CommonResult<Boolean> updateUserAuditLog(@Valid @RequestBody UserAuditLogSaveReqVO updateReqVO) { |
||||||
|
userAuditLogService.updateUserAuditLog(updateReqVO); |
||||||
|
return success(true); |
||||||
|
} |
||||||
|
|
||||||
|
@DeleteMapping("/delete") |
||||||
|
@Operation(summary = "删除用户审核日志") |
||||||
|
@Parameter(name = "id", description = "编号", required = true) |
||||||
|
@PreAuthorize("@ss.hasPermission('system:user-audit-log:delete')") |
||||||
|
public CommonResult<Boolean> deleteUserAuditLog(@RequestParam("id") Long id) { |
||||||
|
userAuditLogService.deleteUserAuditLog(id); |
||||||
|
return success(true); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/get") |
||||||
|
@Operation(summary = "获得用户审核日志") |
||||||
|
@Parameter(name = "id", description = "编号", required = true, example = "1024") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:user-audit-log:query')") |
||||||
|
public CommonResult<UserAuditLogRespVO> getUserAuditLog(@RequestParam("id") Long id) { |
||||||
|
UserAuditLogDO userAuditLog = userAuditLogService.getUserAuditLog(id); |
||||||
|
return success(BeanUtils.toBean(userAuditLog, UserAuditLogRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/page") |
||||||
|
@Operation(summary = "获得用户审核日志分页") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:user-audit-log:query')") |
||||||
|
public CommonResult<PageResult<UserAuditLogRespVO>> getUserAuditLogPage(@Valid UserAuditLogPageReqVO pageReqVO) { |
||||||
|
PageResult<UserAuditLogDO> pageResult = userAuditLogService.getUserAuditLogPage(pageReqVO); |
||||||
|
return success(BeanUtils.toBean(pageResult, UserAuditLogRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@GetMapping("/export-excel") |
||||||
|
@Operation(summary = "导出用户审核日志 Excel") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:user-audit-log:export')") |
||||||
|
@ApiAccessLog(operateType = EXPORT) |
||||||
|
public void exportUserAuditLogExcel(@Valid UserAuditLogPageReqVO pageReqVO, |
||||||
|
HttpServletResponse response) throws IOException { |
||||||
|
pageReqVO.setPageSize(PageParam.PAGE_SIZE_NONE); |
||||||
|
List<UserAuditLogDO> list = userAuditLogService.getUserAuditLogPage(pageReqVO).getList(); |
||||||
|
// 导出 Excel
|
||||||
|
ExcelUtils.write(response, "用户审核日志.xls", "数据", UserAuditLogRespVO.class, |
||||||
|
BeanUtils.toBean(list, UserAuditLogRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,45 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.userAuditlog.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 UserAuditLogPageReqVO extends PageParam { |
||||||
|
|
||||||
|
@Schema(description = "用户id", example = "31581") |
||||||
|
private Long userId; |
||||||
|
|
||||||
|
@Schema(description = "驳回内容") |
||||||
|
private String content; |
||||||
|
|
||||||
|
@Schema(description = "审批状态", example = "1") |
||||||
|
private String status; |
||||||
|
|
||||||
|
@Schema(description = "用户类型", example = "1") |
||||||
|
private Integer userType; |
||||||
|
|
||||||
|
@Schema(description = "审核状态", example = "1") |
||||||
|
private Integer audit; |
||||||
|
|
||||||
|
@Schema(description = "创建者") |
||||||
|
private String createBy; |
||||||
|
|
||||||
|
@Schema(description = "创建时间") |
||||||
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
||||||
|
private LocalDateTime[] createTime; |
||||||
|
|
||||||
|
@Schema(description = "更新者") |
||||||
|
private String updateBy; |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
} |
@ -0,0 +1,43 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.userAuditlog.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.*; |
||||||
|
|
||||||
|
@Schema(description = "管理后台 - 用户审核日志 Response VO") |
||||||
|
@Data |
||||||
|
@ExcelIgnoreUnannotated |
||||||
|
public class UserAuditLogRespVO { |
||||||
|
|
||||||
|
@Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "21155") |
||||||
|
@ExcelProperty("主键") |
||||||
|
private Long id; |
||||||
|
|
||||||
|
@Schema(description = "用户id", requiredMode = Schema.RequiredMode.REQUIRED, example = "31581") |
||||||
|
@ExcelProperty("用户id") |
||||||
|
private Long userId; |
||||||
|
|
||||||
|
@Schema(description = "驳回内容") |
||||||
|
@ExcelProperty("驳回内容") |
||||||
|
private String content; |
||||||
|
|
||||||
|
@Schema(description = "审批状态", example = "1") |
||||||
|
@ExcelProperty("审批状态") |
||||||
|
private Integer audit; |
||||||
|
|
||||||
|
@Schema(description = "创建者") |
||||||
|
@ExcelProperty("创建者") |
||||||
|
private String createBy; |
||||||
|
|
||||||
|
@Schema(description = "创建时间") |
||||||
|
@ExcelProperty("创建时间") |
||||||
|
private LocalDateTime createTime; |
||||||
|
|
||||||
|
@Schema(description = "更新者") |
||||||
|
@ExcelProperty("更新者") |
||||||
|
private String updateBy; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,32 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.userAuditlog.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 UserAuditLogSaveReqVO { |
||||||
|
|
||||||
|
@Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "21155") |
||||||
|
private Long id; |
||||||
|
|
||||||
|
@Schema(description = "用户id", requiredMode = Schema.RequiredMode.REQUIRED, example = "31581") |
||||||
|
@NotNull(message = "用户id不能为空") |
||||||
|
private Long userId; |
||||||
|
|
||||||
|
@Schema(description = "驳回内容") |
||||||
|
private String content; |
||||||
|
|
||||||
|
@Schema(description = "审批状态", example = "1") |
||||||
|
private Integer audit; |
||||||
|
|
||||||
|
@Schema(description = "创建者") |
||||||
|
private String createBy; |
||||||
|
|
||||||
|
@Schema(description = "更新者") |
||||||
|
private String updateBy; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,67 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.dal.dataobject.fileInfo; |
||||||
|
|
||||||
|
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("file_info") |
||||||
|
@KeySequence("file_info_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
|
||||||
|
@Data |
||||||
|
@EqualsAndHashCode(callSuper = true) |
||||||
|
@ToString(callSuper = true) |
||||||
|
@Builder |
||||||
|
@NoArgsConstructor |
||||||
|
@AllArgsConstructor |
||||||
|
public class FileInfoDO extends BaseDO { |
||||||
|
|
||||||
|
/** |
||||||
|
* ID |
||||||
|
*/ |
||||||
|
@TableId |
||||||
|
private Long id; |
||||||
|
/** |
||||||
|
* 关联ID(日报/案件/行动...) |
||||||
|
*/ |
||||||
|
private String unitId; |
||||||
|
/** |
||||||
|
* 类型 |
||||||
|
*/ |
||||||
|
private Long type; |
||||||
|
/** |
||||||
|
* 状态 |
||||||
|
*/ |
||||||
|
private Long dictData; |
||||||
|
/** |
||||||
|
* 部门ID |
||||||
|
*/ |
||||||
|
private Long dictType; |
||||||
|
/** |
||||||
|
* 文件分组ID |
||||||
|
*/ |
||||||
|
private Long groupId; |
||||||
|
/** |
||||||
|
* 文件权限(英文分号分隔) |
||||||
|
*/ |
||||||
|
private String permissions; |
||||||
|
/** |
||||||
|
* 关联IDString类型 |
||||||
|
*/ |
||||||
|
private String unitIdStr; |
||||||
|
/** |
||||||
|
* 目标ID |
||||||
|
*/ |
||||||
|
private Long targetId; |
||||||
|
/** |
||||||
|
* 文件id |
||||||
|
*/ |
||||||
|
private Long infraFileId; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,43 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.dal.dataobject.userAuditlog; |
||||||
|
|
||||||
|
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("user_audit_log") |
||||||
|
@KeySequence("user_audit_log_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
|
||||||
|
@Data |
||||||
|
@EqualsAndHashCode(callSuper = true) |
||||||
|
@ToString(callSuper = true) |
||||||
|
@Builder |
||||||
|
@NoArgsConstructor |
||||||
|
@AllArgsConstructor |
||||||
|
public class UserAuditLogDO extends BaseDO { |
||||||
|
|
||||||
|
/** |
||||||
|
* 主键 |
||||||
|
*/ |
||||||
|
@TableId |
||||||
|
private Long id; |
||||||
|
/** |
||||||
|
* 用户id |
||||||
|
*/ |
||||||
|
private Long userId; |
||||||
|
/** |
||||||
|
* 驳回内容 |
||||||
|
*/ |
||||||
|
private String content; |
||||||
|
/** |
||||||
|
* 审批状态 |
||||||
|
*/ |
||||||
|
private Integer audit; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,35 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.dal.mysql.fileInfo; |
||||||
|
|
||||||
|
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.fileInfo.FileInfoDO; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.fileInfo.vo.*; |
||||||
|
|
||||||
|
/** |
||||||
|
* 附件信息 Mapper |
||||||
|
* |
||||||
|
* @author 芋道源码 |
||||||
|
*/ |
||||||
|
@Mapper |
||||||
|
public interface FileInfoMapper extends BaseMapperX<FileInfoDO> { |
||||||
|
|
||||||
|
default PageResult<FileInfoDO> selectPage(FileInfoPageReqVO reqVO) { |
||||||
|
return selectPage(reqVO, new LambdaQueryWrapperX<FileInfoDO>() |
||||||
|
.eqIfPresent(FileInfoDO::getUnitId, reqVO.getUnitId()) |
||||||
|
.eqIfPresent(FileInfoDO::getType, reqVO.getType()) |
||||||
|
.eqIfPresent(FileInfoDO::getDictData, reqVO.getDictData()) |
||||||
|
.eqIfPresent(FileInfoDO::getDictType, reqVO.getDictType()) |
||||||
|
.eqIfPresent(FileInfoDO::getGroupId, reqVO.getGroupId()) |
||||||
|
.eqIfPresent(FileInfoDO::getPermissions, reqVO.getPermissions()) |
||||||
|
.betweenIfPresent(FileInfoDO::getCreateTime, reqVO.getCreateTime()) |
||||||
|
.eqIfPresent(FileInfoDO::getUnitIdStr, reqVO.getUnitIdStr()) |
||||||
|
.eqIfPresent(FileInfoDO::getTargetId, reqVO.getTargetId()) |
||||||
|
.eqIfPresent(FileInfoDO::getInfraFileId, reqVO.getInfraFileId()) |
||||||
|
.orderByDesc(FileInfoDO::getId)); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,29 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.dal.mysql.userAuditlog; |
||||||
|
|
||||||
|
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.userAuditlog.UserAuditLogDO; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.userAuditlog.vo.*; |
||||||
|
|
||||||
|
/** |
||||||
|
* 用户审核日志 Mapper |
||||||
|
* |
||||||
|
* @author 芋道源码 |
||||||
|
*/ |
||||||
|
@Mapper |
||||||
|
public interface UserAuditLogMapper extends BaseMapperX<UserAuditLogDO> { |
||||||
|
|
||||||
|
default PageResult<UserAuditLogDO> selectPage(UserAuditLogPageReqVO reqVO) { |
||||||
|
return selectPage(reqVO, new LambdaQueryWrapperX<UserAuditLogDO>() |
||||||
|
.eqIfPresent(UserAuditLogDO::getUserId, reqVO.getUserId()) |
||||||
|
.eqIfPresent(UserAuditLogDO::getContent, reqVO.getContent()) |
||||||
|
.eqIfPresent(UserAuditLogDO::getAudit, reqVO.getStatus()) |
||||||
|
.betweenIfPresent(UserAuditLogDO::getCreateTime, reqVO.getCreateTime()) |
||||||
|
.orderByDesc(UserAuditLogDO::getId)); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,56 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.service.fileInfo; |
||||||
|
|
||||||
|
import java.util.*; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.fileInfo.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.fileInfo.FileInfoDO; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageParam; |
||||||
|
|
||||||
|
import javax.validation.Valid; |
||||||
|
|
||||||
|
/** |
||||||
|
* 附件信息 Service 接口 |
||||||
|
* |
||||||
|
* @author 芋道源码 |
||||||
|
*/ |
||||||
|
public interface FileInfoService { |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建附件信息 |
||||||
|
* |
||||||
|
* @param createReqVO 创建信息 |
||||||
|
* @return 编号 |
||||||
|
*/ |
||||||
|
Long createFileInfo(@Valid FileInfoSaveReqVO createReqVO); |
||||||
|
|
||||||
|
/** |
||||||
|
* 更新附件信息 |
||||||
|
* |
||||||
|
* @param updateReqVO 更新信息 |
||||||
|
*/ |
||||||
|
void updateFileInfo(@Valid FileInfoSaveReqVO updateReqVO); |
||||||
|
|
||||||
|
/** |
||||||
|
* 删除附件信息 |
||||||
|
* |
||||||
|
* @param id 编号 |
||||||
|
*/ |
||||||
|
void deleteFileInfo(Long id); |
||||||
|
|
||||||
|
/** |
||||||
|
* 获得附件信息 |
||||||
|
* |
||||||
|
* @param id 编号 |
||||||
|
* @return 附件信息 |
||||||
|
*/ |
||||||
|
FileInfoDO getFileInfo(Long id); |
||||||
|
|
||||||
|
/** |
||||||
|
* 获得附件信息分页 |
||||||
|
* |
||||||
|
* @param pageReqVO 分页查询 |
||||||
|
* @return 附件信息分页 |
||||||
|
*/ |
||||||
|
PageResult<FileInfoDO> getFileInfoPage(FileInfoPageReqVO pageReqVO); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,75 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.service.fileInfo; |
||||||
|
|
||||||
|
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.fileInfo.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.fileInfo.FileInfoDO; |
||||||
|
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.fileInfo.FileInfoMapper; |
||||||
|
|
||||||
|
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 FileInfoServiceImpl implements FileInfoService { |
||||||
|
|
||||||
|
@Resource |
||||||
|
private FileInfoMapper fileInfoMapper; |
||||||
|
|
||||||
|
@Override |
||||||
|
public Long createFileInfo(FileInfoSaveReqVO createReqVO) { |
||||||
|
// 插入
|
||||||
|
FileInfoDO fileInfo = BeanUtils.toBean(createReqVO, FileInfoDO.class); |
||||||
|
fileInfoMapper.insert(fileInfo); |
||||||
|
// 返回
|
||||||
|
return fileInfo.getId(); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void updateFileInfo(FileInfoSaveReqVO updateReqVO) { |
||||||
|
// 校验存在
|
||||||
|
validateFileInfoExists(updateReqVO.getId()); |
||||||
|
// 更新
|
||||||
|
FileInfoDO updateObj = BeanUtils.toBean(updateReqVO, FileInfoDO.class); |
||||||
|
fileInfoMapper.updateById(updateObj); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void deleteFileInfo(Long id) { |
||||||
|
// 校验存在
|
||||||
|
validateFileInfoExists(id); |
||||||
|
// 删除
|
||||||
|
fileInfoMapper.deleteById(id); |
||||||
|
} |
||||||
|
|
||||||
|
private void validateFileInfoExists(Long id) { |
||||||
|
if (fileInfoMapper.selectById(id) == null) { |
||||||
|
throw exception(FILE_INFO_NOT_EXISTS); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public FileInfoDO getFileInfo(Long id) { |
||||||
|
return fileInfoMapper.selectById(id); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public PageResult<FileInfoDO> getFileInfoPage(FileInfoPageReqVO pageReqVO) { |
||||||
|
return fileInfoMapper.selectPage(pageReqVO); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,56 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.service.userAuditlog; |
||||||
|
|
||||||
|
import java.util.*; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.userAuditlog.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.userAuditlog.UserAuditLogDO; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageParam; |
||||||
|
|
||||||
|
import javax.validation.Valid; |
||||||
|
|
||||||
|
/** |
||||||
|
* 用户审核日志 Service 接口 |
||||||
|
* |
||||||
|
* @author 芋道源码 |
||||||
|
*/ |
||||||
|
public interface UserAuditLogService { |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建用户审核日志 |
||||||
|
* |
||||||
|
* @param createReqVO 创建信息 |
||||||
|
* @return 编号 |
||||||
|
*/ |
||||||
|
Long createUserAuditLog(@Valid UserAuditLogSaveReqVO createReqVO); |
||||||
|
|
||||||
|
/** |
||||||
|
* 更新用户审核日志 |
||||||
|
* |
||||||
|
* @param updateReqVO 更新信息 |
||||||
|
*/ |
||||||
|
void updateUserAuditLog(@Valid UserAuditLogSaveReqVO updateReqVO); |
||||||
|
|
||||||
|
/** |
||||||
|
* 删除用户审核日志 |
||||||
|
* |
||||||
|
* @param id 编号 |
||||||
|
*/ |
||||||
|
void deleteUserAuditLog(Long id); |
||||||
|
|
||||||
|
/** |
||||||
|
* 获得用户审核日志 |
||||||
|
* |
||||||
|
* @param id 编号 |
||||||
|
* @return 用户审核日志 |
||||||
|
*/ |
||||||
|
UserAuditLogDO getUserAuditLog(Long id); |
||||||
|
|
||||||
|
/** |
||||||
|
* 获得用户审核日志分页 |
||||||
|
* |
||||||
|
* @param pageReqVO 分页查询 |
||||||
|
* @return 用户审核日志分页 |
||||||
|
*/ |
||||||
|
PageResult<UserAuditLogDO> getUserAuditLogPage(UserAuditLogPageReqVO pageReqVO); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,75 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.service.userAuditlog; |
||||||
|
|
||||||
|
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.userAuditlog.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.userAuditlog.UserAuditLogDO; |
||||||
|
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.userAuditlog.UserAuditLogMapper; |
||||||
|
|
||||||
|
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 UserAuditLogServiceImpl implements UserAuditLogService { |
||||||
|
|
||||||
|
@Resource |
||||||
|
private UserAuditLogMapper userAuditLogMapper; |
||||||
|
|
||||||
|
@Override |
||||||
|
public Long createUserAuditLog(UserAuditLogSaveReqVO createReqVO) { |
||||||
|
// 插入
|
||||||
|
UserAuditLogDO userAuditLog = BeanUtils.toBean(createReqVO, UserAuditLogDO.class); |
||||||
|
userAuditLogMapper.insert(userAuditLog); |
||||||
|
// 返回
|
||||||
|
return userAuditLog.getId(); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void updateUserAuditLog(UserAuditLogSaveReqVO updateReqVO) { |
||||||
|
// 校验存在
|
||||||
|
validateUserAuditLogExists(updateReqVO.getId()); |
||||||
|
// 更新
|
||||||
|
UserAuditLogDO updateObj = BeanUtils.toBean(updateReqVO, UserAuditLogDO.class); |
||||||
|
userAuditLogMapper.updateById(updateObj); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void deleteUserAuditLog(Long id) { |
||||||
|
// 校验存在
|
||||||
|
validateUserAuditLogExists(id); |
||||||
|
// 删除
|
||||||
|
userAuditLogMapper.deleteById(id); |
||||||
|
} |
||||||
|
|
||||||
|
private void validateUserAuditLogExists(Long id) { |
||||||
|
if (userAuditLogMapper.selectById(id) == null) { |
||||||
|
throw exception(USER_AUDIT_LOG_NOT_EXISTS); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public UserAuditLogDO getUserAuditLog(Long id) { |
||||||
|
return userAuditLogMapper.selectById(id); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public PageResult<UserAuditLogDO> getUserAuditLogPage(UserAuditLogPageReqVO pageReqVO) { |
||||||
|
return userAuditLogMapper.selectPage(pageReqVO); |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue