Browse Source
# Conflicts: # yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/enterprise/EnterpriseServiceImpl.javamaster
19 changed files with 506 additions and 24 deletions
@ -0,0 +1,9 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.bigviewdata.vo; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
@Data |
||||||
|
public class StatusCountVO { |
||||||
|
private Integer status; |
||||||
|
private Integer count; |
||||||
|
} |
@ -0,0 +1,94 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.enterprisesuser; |
||||||
|
|
||||||
|
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.enterprisesuser.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.enterprisesuser.EnterprisesUserDO; |
||||||
|
import cn.iocoder.yudao.module.system.service.enterprisesuser.EnterprisesUserService; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
import javax.servlet.http.HttpServletResponse; |
||||||
|
import javax.validation.Valid; |
||||||
|
|
||||||
|
@Tag(name = "管理后台 - 环保员工与企业对照") |
||||||
|
@RestController |
||||||
|
@RequestMapping("/system/enterprises-user") |
||||||
|
@Validated |
||||||
|
public class EnterprisesUserController { |
||||||
|
|
||||||
|
@Resource |
||||||
|
private EnterprisesUserService enterprisesUserService; |
||||||
|
|
||||||
|
@PostMapping("/create") |
||||||
|
@Operation(summary = "创建环保员工与企业对照") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:enterprises-user:create')") |
||||||
|
public CommonResult<Long> createEnterprisesUser(@Valid @RequestBody EnterprisesUserSaveReqVO createReqVO) { |
||||||
|
return success(enterprisesUserService.createEnterprisesUser(createReqVO)); |
||||||
|
} |
||||||
|
|
||||||
|
@PutMapping("/update") |
||||||
|
@Operation(summary = "更新环保员工与企业对照") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:enterprises-user:update')") |
||||||
|
public CommonResult<Boolean> updateEnterprisesUser(@Valid @RequestBody EnterprisesUserSaveReqVO updateReqVO) { |
||||||
|
enterprisesUserService.updateEnterprisesUser(updateReqVO); |
||||||
|
return success(true); |
||||||
|
} |
||||||
|
|
||||||
|
@DeleteMapping("/delete") |
||||||
|
@Operation(summary = "删除环保员工与企业对照") |
||||||
|
@Parameter(name = "id", description = "编号", required = true) |
||||||
|
@PreAuthorize("@ss.hasPermission('system:enterprises-user:delete')") |
||||||
|
public CommonResult<Boolean> deleteEnterprisesUser(@RequestParam("id") Long id) { |
||||||
|
enterprisesUserService.deleteEnterprisesUser(id); |
||||||
|
return success(true); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/get") |
||||||
|
@Operation(summary = "获得环保员工与企业对照") |
||||||
|
@Parameter(name = "id", description = "编号", required = true, example = "1024") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:enterprises-user:query')") |
||||||
|
public CommonResult<EnterprisesUserRespVO> getEnterprisesUser(@RequestParam("id") Long id) { |
||||||
|
EnterprisesUserDO enterprisesUser = enterprisesUserService.getEnterprisesUser(id); |
||||||
|
return success(BeanUtils.toBean(enterprisesUser, EnterprisesUserRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/page") |
||||||
|
@Operation(summary = "获得环保员工与企业对照分页") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:enterprises-user:query')") |
||||||
|
public CommonResult<PageResult<EnterprisesUserRespVO>> getEnterprisesUserPage(@Valid EnterprisesUserPageReqVO pageReqVO) { |
||||||
|
PageResult<EnterprisesUserDO> pageResult = enterprisesUserService.getEnterprisesUserPage(pageReqVO); |
||||||
|
return success(BeanUtils.toBean(pageResult, EnterprisesUserRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/export-excel") |
||||||
|
@Operation(summary = "导出环保员工与企业对照 Excel") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:enterprises-user:export')") |
||||||
|
@ApiAccessLog(operateType = EXPORT) |
||||||
|
public void exportEnterprisesUserExcel(@Valid EnterprisesUserPageReqVO pageReqVO, |
||||||
|
HttpServletResponse response) throws IOException { |
||||||
|
pageReqVO.setPageSize(PageParam.PAGE_SIZE_NONE); |
||||||
|
List<EnterprisesUserDO> list = enterprisesUserService.getEnterprisesUserPage(pageReqVO).getList(); |
||||||
|
// 导出 Excel
|
||||||
|
ExcelUtils.write(response, "环保员工与企业对照.xls", "数据", EnterprisesUserRespVO.class, |
||||||
|
BeanUtils.toBean(list, EnterprisesUserRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,34 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.enterprisesuser.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 EnterprisesUserPageReqVO extends PageParam { |
||||||
|
|
||||||
|
@Schema(description = "用户id", example = "145") |
||||||
|
private Long userId; |
||||||
|
|
||||||
|
@Schema(description = "企业id", example = "24973") |
||||||
|
private Long enterprisesId; |
||||||
|
|
||||||
|
@Schema(description = "创建者") |
||||||
|
private String creator; |
||||||
|
|
||||||
|
@Schema(description = "创建时间") |
||||||
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
||||||
|
private LocalDateTime[] createTime; |
||||||
|
|
||||||
|
@Schema(description = "更新者") |
||||||
|
private String updater; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,39 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.enterprisesuser.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 EnterprisesUserRespVO { |
||||||
|
|
||||||
|
@Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "29164") |
||||||
|
@ExcelProperty("主键") |
||||||
|
private Long id; |
||||||
|
|
||||||
|
@Schema(description = "用户id", requiredMode = Schema.RequiredMode.REQUIRED, example = "145") |
||||||
|
@ExcelProperty("用户id") |
||||||
|
private Long userId; |
||||||
|
|
||||||
|
@Schema(description = "企业id", requiredMode = Schema.RequiredMode.REQUIRED, example = "24973") |
||||||
|
@ExcelProperty("企业id") |
||||||
|
private Long enterprisesId; |
||||||
|
|
||||||
|
@Schema(description = "创建者") |
||||||
|
@ExcelProperty("创建者") |
||||||
|
private String createBy; |
||||||
|
|
||||||
|
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) |
||||||
|
@ExcelProperty("创建时间") |
||||||
|
private LocalDateTime createTime; |
||||||
|
|
||||||
|
@Schema(description = "更新者") |
||||||
|
@ExcelProperty("更新者") |
||||||
|
private String updateBy; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,30 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.enterprisesuser.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 EnterprisesUserSaveReqVO { |
||||||
|
|
||||||
|
@Schema(description = "主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "29164") |
||||||
|
private Long id; |
||||||
|
|
||||||
|
@Schema(description = "用户id", requiredMode = Schema.RequiredMode.REQUIRED, example = "145") |
||||||
|
@NotNull(message = "用户id不能为空") |
||||||
|
private Long userId; |
||||||
|
|
||||||
|
@Schema(description = "企业id", requiredMode = Schema.RequiredMode.REQUIRED, example = "24973") |
||||||
|
@NotNull(message = "企业id不能为空") |
||||||
|
private Long enterprisesId; |
||||||
|
|
||||||
|
@Schema(description = "创建者") |
||||||
|
private String createBy; |
||||||
|
|
||||||
|
@Schema(description = "更新者") |
||||||
|
private String updateBy; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,39 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.dal.dataobject.enterprisesuser; |
||||||
|
|
||||||
|
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_enterprises") |
||||||
|
@KeySequence("user_enterprises_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
|
||||||
|
@Data |
||||||
|
@EqualsAndHashCode(callSuper = true) |
||||||
|
@ToString(callSuper = true) |
||||||
|
@Builder |
||||||
|
@NoArgsConstructor |
||||||
|
@AllArgsConstructor |
||||||
|
public class EnterprisesUserDO extends BaseDO { |
||||||
|
|
||||||
|
/** |
||||||
|
* 主键 |
||||||
|
*/ |
||||||
|
@TableId |
||||||
|
private Long id; |
||||||
|
/** |
||||||
|
* 用户id |
||||||
|
*/ |
||||||
|
private Long userId; |
||||||
|
/** |
||||||
|
* 企业id |
||||||
|
*/ |
||||||
|
private Long enterprisesId; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,30 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.dal.mysql.enterprisesuser; |
||||||
|
|
||||||
|
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.enterprisesuser.EnterprisesUserDO; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.enterprisesuser.vo.*; |
||||||
|
|
||||||
|
/** |
||||||
|
* 环保员工与企业对照 Mapper |
||||||
|
* |
||||||
|
* @author 芋道源码 |
||||||
|
*/ |
||||||
|
@Mapper |
||||||
|
public interface EnterprisesUserMapper extends BaseMapperX<EnterprisesUserDO> { |
||||||
|
|
||||||
|
default PageResult<EnterprisesUserDO> selectPage(EnterprisesUserPageReqVO reqVO) { |
||||||
|
return selectPage(reqVO, new LambdaQueryWrapperX<EnterprisesUserDO>() |
||||||
|
.eqIfPresent(EnterprisesUserDO::getUserId, reqVO.getUserId()) |
||||||
|
.eqIfPresent(EnterprisesUserDO::getEnterprisesId, reqVO.getEnterprisesId()) |
||||||
|
.eqIfPresent(EnterprisesUserDO::getCreator, reqVO.getCreator()) |
||||||
|
.betweenIfPresent(EnterprisesUserDO::getCreateTime, reqVO.getCreateTime()) |
||||||
|
.eqIfPresent(EnterprisesUserDO::getUpdater, reqVO.getUpdater()) |
||||||
|
.orderByDesc(EnterprisesUserDO::getId)); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,56 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.service.enterprisesuser; |
||||||
|
|
||||||
|
import java.util.*; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.enterprisesuser.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.enterprisesuser.EnterprisesUserDO; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageParam; |
||||||
|
|
||||||
|
import javax.validation.Valid; |
||||||
|
|
||||||
|
/** |
||||||
|
* 环保员工与企业对照 Service 接口 |
||||||
|
* |
||||||
|
* @author 芋道源码 |
||||||
|
*/ |
||||||
|
public interface EnterprisesUserService { |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建环保员工与企业对照 |
||||||
|
* |
||||||
|
* @param createReqVO 创建信息 |
||||||
|
* @return 编号 |
||||||
|
*/ |
||||||
|
Long createEnterprisesUser(@Valid EnterprisesUserSaveReqVO createReqVO); |
||||||
|
|
||||||
|
/** |
||||||
|
* 更新环保员工与企业对照 |
||||||
|
* |
||||||
|
* @param updateReqVO 更新信息 |
||||||
|
*/ |
||||||
|
void updateEnterprisesUser(@Valid EnterprisesUserSaveReqVO updateReqVO); |
||||||
|
|
||||||
|
/** |
||||||
|
* 删除环保员工与企业对照 |
||||||
|
* |
||||||
|
* @param id 编号 |
||||||
|
*/ |
||||||
|
void deleteEnterprisesUser(Long id); |
||||||
|
|
||||||
|
/** |
||||||
|
* 获得环保员工与企业对照 |
||||||
|
* |
||||||
|
* @param id 编号 |
||||||
|
* @return 环保员工与企业对照 |
||||||
|
*/ |
||||||
|
EnterprisesUserDO getEnterprisesUser(Long id); |
||||||
|
|
||||||
|
/** |
||||||
|
* 获得环保员工与企业对照分页 |
||||||
|
* |
||||||
|
* @param pageReqVO 分页查询 |
||||||
|
* @return 环保员工与企业对照分页 |
||||||
|
*/ |
||||||
|
PageResult<EnterprisesUserDO> getEnterprisesUserPage(EnterprisesUserPageReqVO pageReqVO); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,75 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.service.enterprisesuser; |
||||||
|
|
||||||
|
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.enterprisesuser.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.enterprisesuser.EnterprisesUserDO; |
||||||
|
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.enterprisesuser.EnterprisesUserMapper; |
||||||
|
|
||||||
|
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 EnterprisesUserServiceImpl implements EnterprisesUserService { |
||||||
|
|
||||||
|
@Resource |
||||||
|
private EnterprisesUserMapper enterprisesUserMapper; |
||||||
|
|
||||||
|
@Override |
||||||
|
public Long createEnterprisesUser(EnterprisesUserSaveReqVO createReqVO) { |
||||||
|
// 插入
|
||||||
|
EnterprisesUserDO enterprisesUser = BeanUtils.toBean(createReqVO, EnterprisesUserDO.class); |
||||||
|
enterprisesUserMapper.insert(enterprisesUser); |
||||||
|
// 返回
|
||||||
|
return enterprisesUser.getId(); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void updateEnterprisesUser(EnterprisesUserSaveReqVO updateReqVO) { |
||||||
|
// 校验存在
|
||||||
|
validateEnterprisesUserExists(updateReqVO.getId()); |
||||||
|
// 更新
|
||||||
|
EnterprisesUserDO updateObj = BeanUtils.toBean(updateReqVO, EnterprisesUserDO.class); |
||||||
|
enterprisesUserMapper.updateById(updateObj); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void deleteEnterprisesUser(Long id) { |
||||||
|
// 校验存在
|
||||||
|
validateEnterprisesUserExists(id); |
||||||
|
// 删除
|
||||||
|
enterprisesUserMapper.deleteById(id); |
||||||
|
} |
||||||
|
|
||||||
|
private void validateEnterprisesUserExists(Long id) { |
||||||
|
if (enterprisesUserMapper.selectById(id) == null) { |
||||||
|
throw exception(ENTERPRISE_EXISTS); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public EnterprisesUserDO getEnterprisesUser(Long id) { |
||||||
|
return enterprisesUserMapper.selectById(id); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public PageResult<EnterprisesUserDO> getEnterprisesUserPage(EnterprisesUserPageReqVO pageReqVO) { |
||||||
|
return enterprisesUserMapper.selectPage(pageReqVO); |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue