26 changed files with 674 additions and 46 deletions
@ -0,0 +1,20 @@
|
||||
package cn.iocoder.yudao.module.system.controller.admin.enterpriseinspections.vo; |
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema; |
||||
import lombok.Data; |
||||
|
||||
import java.util.List; |
||||
|
||||
@Data |
||||
public class SelectUserChangeVO { |
||||
@Schema(description = "用户ID", example = "3876") |
||||
private Long userId; |
||||
@Schema(description = "用户姓名", example = "29150") |
||||
private String realName; |
||||
@Schema(description = "部门名称", example = "29150") |
||||
private List<String> roleName; |
||||
@Schema(description = "部门名称", example = "29150") |
||||
private String avatar; |
||||
|
||||
|
||||
} |
@ -0,0 +1,96 @@
|
||||
package cn.iocoder.yudao.module.system.controller.admin.signinlog; |
||||
|
||||
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.signinlog.vo.*; |
||||
import cn.iocoder.yudao.module.system.dal.dataobject.signinlog.SignInLogDO; |
||||
import cn.iocoder.yudao.module.system.service.signinlog.SignInLogService; |
||||
|
||||
import javax.annotation.Resource; |
||||
import javax.servlet.http.HttpServletResponse; |
||||
import javax.validation.Valid; |
||||
|
||||
@Tag(name = "管理后台 - 协调人员打卡记录") |
||||
@RestController |
||||
@RequestMapping("/system/sign-in-log") |
||||
@Validated |
||||
public class SignInLogController { |
||||
|
||||
@Resource |
||||
private SignInLogService signInLogService; |
||||
|
||||
@PostMapping("/create") |
||||
@Operation(summary = "创建协调人员打卡记录") |
||||
@PreAuthorize("@ss.hasPermission('system:sign-in-log:create')") |
||||
public CommonResult<Long> createSignInLog(@Valid @RequestBody SignInLogSaveReqVO createReqVO) { |
||||
return success(signInLogService.createSignInLog(createReqVO)); |
||||
} |
||||
|
||||
@PutMapping("/update") |
||||
@Operation(summary = "更新协调人员打卡记录") |
||||
@PreAuthorize("@ss.hasPermission('system:sign-in-log:update')") |
||||
public CommonResult<Boolean> updateSignInLog(@Valid @RequestBody SignInLogSaveReqVO updateReqVO) { |
||||
signInLogService.updateSignInLog(updateReqVO); |
||||
return success(true); |
||||
} |
||||
|
||||
@DeleteMapping("/delete") |
||||
@Operation(summary = "删除协调人员打卡记录") |
||||
@Parameter(name = "id", description = "编号", required = true) |
||||
@PreAuthorize("@ss.hasPermission('system:sign-in-log:delete')") |
||||
public CommonResult<Boolean> deleteSignInLog(@RequestParam("id") Long id) { |
||||
signInLogService.deleteSignInLog(id); |
||||
return success(true); |
||||
} |
||||
|
||||
@GetMapping("/get") |
||||
@Operation(summary = "获得协调人员打卡记录") |
||||
@Parameter(name = "id", description = "编号", required = true, example = "1024") |
||||
@PreAuthorize("@ss.hasPermission('system:sign-in-log:query')") |
||||
public CommonResult<SignInLogRespVO> getSignInLog(@RequestParam("id") Long id) { |
||||
SignInLogDO signInLog = signInLogService.getSignInLog(id); |
||||
return success(BeanUtils.toBean(signInLog, SignInLogRespVO.class)); |
||||
} |
||||
|
||||
@GetMapping("/page") |
||||
@Operation(summary = "获得协调人员打卡记录分页") |
||||
@PreAuthorize("@ss.hasPermission('system:sign-in-log:query')") |
||||
public CommonResult<PageResult<SignInLogRespVO>> getSignInLogPage(@Valid SignInLogPageReqVO pageReqVO) { |
||||
PageResult<SignInLogDO> pageResult = signInLogService.getSignInLogPage(pageReqVO); |
||||
return success(BeanUtils.toBean(pageResult, SignInLogRespVO.class)); |
||||
} |
||||
|
||||
@GetMapping("/export-excel") |
||||
@Operation(summary = "导出协调人员打卡记录 Excel") |
||||
@PreAuthorize("@ss.hasPermission('system:sign-in-log:export')") |
||||
@ApiAccessLog(operateType = EXPORT) |
||||
public void exportSignInLogExcel(@Valid SignInLogPageReqVO pageReqVO, |
||||
HttpServletResponse response) throws IOException { |
||||
pageReqVO.setPageSize(PageParam.PAGE_SIZE_NONE); |
||||
List<SignInLogDO> list = signInLogService.getSignInLogPage(pageReqVO).getList(); |
||||
// 导出 Excel
|
||||
ExcelUtils.write(response, "协调人员打卡记录.xls", "数据", SignInLogRespVO.class, |
||||
BeanUtils.toBean(list, SignInLogRespVO.class)); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,28 @@
|
||||
package cn.iocoder.yudao.module.system.controller.admin.signinlog.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 SignInLogPageReqVO extends PageParam { |
||||
|
||||
@Schema(description = "执法记录id", example = "19972") |
||||
private Long insId; |
||||
|
||||
@Schema(description = "用户id", example = "30997") |
||||
private Long userId; |
||||
|
||||
@Schema(description = "创建时间") |
||||
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
||||
private LocalDateTime[] createTime; |
||||
|
||||
} |
@ -0,0 +1,31 @@
|
||||
package cn.iocoder.yudao.module.system.controller.admin.signinlog.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 SignInLogRespVO { |
||||
|
||||
@Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "10998") |
||||
@ExcelProperty("主键") |
||||
private Long id; |
||||
|
||||
@Schema(description = "执法记录id", example = "19972") |
||||
@ExcelProperty("执法记录id") |
||||
private Long insId; |
||||
|
||||
@Schema(description = "用户id", example = "30997") |
||||
@ExcelProperty("用户id") |
||||
private Long userId; |
||||
|
||||
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) |
||||
@ExcelProperty("创建时间") |
||||
private LocalDateTime createTime; |
||||
|
||||
} |
@ -0,0 +1,20 @@
|
||||
package cn.iocoder.yudao.module.system.controller.admin.signinlog.vo; |
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema; |
||||
import lombok.*; |
||||
import java.util.*; |
||||
|
||||
@Schema(description = "管理后台 - 协调人员打卡记录新增/修改 Request VO") |
||||
@Data |
||||
public class SignInLogSaveReqVO { |
||||
|
||||
@Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "10998") |
||||
private Long id; |
||||
|
||||
@Schema(description = "执法记录id", example = "19972") |
||||
private Long insId; |
||||
|
||||
@Schema(description = "用户id", example = "30997") |
||||
private Long userId; |
||||
|
||||
} |
@ -0,0 +1,39 @@
|
||||
package cn.iocoder.yudao.module.system.dal.dataobject.signinlog; |
||||
|
||||
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("sign_in_log") |
||||
@KeySequence("sign_in_log_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
|
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
@ToString(callSuper = true) |
||||
@Builder |
||||
@NoArgsConstructor |
||||
@AllArgsConstructor |
||||
public class SignInLogDO extends BaseDO { |
||||
|
||||
/** |
||||
* 主键 |
||||
*/ |
||||
@TableId |
||||
private Long id; |
||||
/** |
||||
* 执法记录id |
||||
*/ |
||||
private Long insId; |
||||
/** |
||||
* 用户id |
||||
*/ |
||||
private Long userId; |
||||
|
||||
} |
@ -0,0 +1,28 @@
|
||||
package cn.iocoder.yudao.module.system.dal.mysql.signinlog; |
||||
|
||||
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.signinlog.SignInLogDO; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
import cn.iocoder.yudao.module.system.controller.admin.signinlog.vo.*; |
||||
|
||||
/** |
||||
* 协调人员打卡记录 Mapper |
||||
* |
||||
* @author 芋道源码 |
||||
*/ |
||||
@Mapper |
||||
public interface SignInLogMapper extends BaseMapperX<SignInLogDO> { |
||||
|
||||
default PageResult<SignInLogDO> selectPage(SignInLogPageReqVO reqVO) { |
||||
return selectPage(reqVO, new LambdaQueryWrapperX<SignInLogDO>() |
||||
.eqIfPresent(SignInLogDO::getInsId, reqVO.getInsId()) |
||||
.eqIfPresent(SignInLogDO::getUserId, reqVO.getUserId()) |
||||
.betweenIfPresent(SignInLogDO::getCreateTime, reqVO.getCreateTime()) |
||||
.orderByDesc(SignInLogDO::getId)); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,56 @@
|
||||
package cn.iocoder.yudao.module.system.service.signinlog; |
||||
|
||||
import java.util.*; |
||||
import cn.iocoder.yudao.module.system.controller.admin.signinlog.vo.*; |
||||
import cn.iocoder.yudao.module.system.dal.dataobject.signinlog.SignInLogDO; |
||||
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
||||
import cn.iocoder.yudao.framework.common.pojo.PageParam; |
||||
|
||||
import javax.validation.Valid; |
||||
|
||||
/** |
||||
* 协调人员打卡记录 Service 接口 |
||||
* |
||||
* @author 芋道源码 |
||||
*/ |
||||
public interface SignInLogService { |
||||
|
||||
/** |
||||
* 创建协调人员打卡记录 |
||||
* |
||||
* @param createReqVO 创建信息 |
||||
* @return 编号 |
||||
*/ |
||||
Long createSignInLog(@Valid SignInLogSaveReqVO createReqVO); |
||||
|
||||
/** |
||||
* 更新协调人员打卡记录 |
||||
* |
||||
* @param updateReqVO 更新信息 |
||||
*/ |
||||
void updateSignInLog(@Valid SignInLogSaveReqVO updateReqVO); |
||||
|
||||
/** |
||||
* 删除协调人员打卡记录 |
||||
* |
||||
* @param id 编号 |
||||
*/ |
||||
void deleteSignInLog(Long id); |
||||
|
||||
/** |
||||
* 获得协调人员打卡记录 |
||||
* |
||||
* @param id 编号 |
||||
* @return 协调人员打卡记录 |
||||
*/ |
||||
SignInLogDO getSignInLog(Long id); |
||||
|
||||
/** |
||||
* 获得协调人员打卡记录分页 |
||||
* |
||||
* @param pageReqVO 分页查询 |
||||
* @return 协调人员打卡记录分页 |
||||
*/ |
||||
PageResult<SignInLogDO> getSignInLogPage(SignInLogPageReqVO pageReqVO); |
||||
|
||||
} |
@ -0,0 +1,75 @@
|
||||
package cn.iocoder.yudao.module.system.service.signinlog; |
||||
|
||||
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.signinlog.vo.*; |
||||
import cn.iocoder.yudao.module.system.dal.dataobject.signinlog.SignInLogDO; |
||||
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.signinlog.SignInLogMapper; |
||||
|
||||
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 SignInLogServiceImpl implements SignInLogService { |
||||
|
||||
@Resource |
||||
private SignInLogMapper signInLogMapper; |
||||
|
||||
@Override |
||||
public Long createSignInLog(SignInLogSaveReqVO createReqVO) { |
||||
// 插入
|
||||
SignInLogDO signInLog = BeanUtils.toBean(createReqVO, SignInLogDO.class); |
||||
signInLogMapper.insert(signInLog); |
||||
// 返回
|
||||
return signInLog.getId(); |
||||
} |
||||
|
||||
@Override |
||||
public void updateSignInLog(SignInLogSaveReqVO updateReqVO) { |
||||
// 校验存在
|
||||
validateSignInLogExists(updateReqVO.getId()); |
||||
// 更新
|
||||
SignInLogDO updateObj = BeanUtils.toBean(updateReqVO, SignInLogDO.class); |
||||
signInLogMapper.updateById(updateObj); |
||||
} |
||||
|
||||
@Override |
||||
public void deleteSignInLog(Long id) { |
||||
// 校验存在
|
||||
validateSignInLogExists(id); |
||||
// 删除
|
||||
signInLogMapper.deleteById(id); |
||||
} |
||||
|
||||
private void validateSignInLogExists(Long id) { |
||||
if (signInLogMapper.selectById(id) == null) { |
||||
throw exception(USER_NOT_EXISTS); |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public SignInLogDO getSignInLog(Long id) { |
||||
return signInLogMapper.selectById(id); |
||||
} |
||||
|
||||
@Override |
||||
public PageResult<SignInLogDO> getSignInLogPage(SignInLogPageReqVO pageReqVO) { |
||||
return signInLogMapper.selectPage(pageReqVO); |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue