18 changed files with 739 additions and 5 deletions
@ -0,0 +1,95 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.enterprise; |
||||||
|
|
||||||
|
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.enterprise.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.enterprise.EnterpriseDO; |
||||||
|
import cn.iocoder.yudao.module.system.service.enterprise.EnterpriseService; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
import javax.servlet.http.HttpServletResponse; |
||||||
|
import javax.validation.Valid; |
||||||
|
|
||||||
|
@Tag(name = "管理后台 - 企业") |
||||||
|
@RestController |
||||||
|
@RequestMapping("/system/enterprise") |
||||||
|
@Validated |
||||||
|
public class EnterpriseController { |
||||||
|
|
||||||
|
@Resource |
||||||
|
private EnterpriseService enterpriseService; |
||||||
|
|
||||||
|
@PostMapping("/create") |
||||||
|
@Operation(summary = "创建企业") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:enterprise:create')") |
||||||
|
public CommonResult<Long> createEnterprise(@Valid @RequestBody EnterpriseSaveReqVO createReqVO) { |
||||||
|
return success(enterpriseService.createEnterprise(createReqVO)); |
||||||
|
} |
||||||
|
|
||||||
|
@PutMapping("/update") |
||||||
|
@Operation(summary = "更新企业") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:enterprise:update')") |
||||||
|
public CommonResult<Boolean> updateEnterprise(@Valid @RequestBody EnterpriseSaveReqVO updateReqVO) { |
||||||
|
enterpriseService.updateEnterprise(updateReqVO); |
||||||
|
return success(true); |
||||||
|
} |
||||||
|
|
||||||
|
@DeleteMapping("/delete") |
||||||
|
@Operation(summary = "删除企业") |
||||||
|
@Parameter(name = "id", description = "编号", required = true) |
||||||
|
@PreAuthorize("@ss.hasPermission('system:enterprise:delete')") |
||||||
|
public CommonResult<Boolean> deleteEnterprise(@RequestParam("id") Long id) { |
||||||
|
enterpriseService.deleteEnterprise(id); |
||||||
|
return success(true); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/get") |
||||||
|
@Operation(summary = "获得企业") |
||||||
|
@Parameter(name = "id", description = "编号", required = true, example = "1024") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:enterprise:query')") |
||||||
|
public CommonResult<EnterpriseRespVO> getEnterprise(@RequestParam("id") Long id) { |
||||||
|
EnterpriseDO enterprise = enterpriseService.getEnterprise(id); |
||||||
|
return success(BeanUtils.toBean(enterprise, EnterpriseRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/page") |
||||||
|
@Operation(summary = "获得企业分页") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:enterprise:query')") |
||||||
|
public CommonResult<PageResult<EnterpriseRespVO>> getEnterprisePage(@Valid EnterprisePageReqVO pageReqVO) { |
||||||
|
PageResult<EnterpriseDO> pageResult = enterpriseService.getEnterprisePage(pageReqVO); |
||||||
|
return success(BeanUtils.toBean(pageResult, EnterpriseRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/export-excel") |
||||||
|
@Operation(summary = "导出企业 Excel") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:enterprise:export')") |
||||||
|
@ApiAccessLog(operateType = EXPORT) |
||||||
|
public void exportEnterpriseExcel(@Valid EnterprisePageReqVO pageReqVO, |
||||||
|
HttpServletResponse response) throws IOException { |
||||||
|
pageReqVO.setPageSize(PageParam.PAGE_SIZE_NONE); |
||||||
|
List<EnterpriseDO> list = enterpriseService.getEnterprisePage(pageReqVO).getList(); |
||||||
|
// 导出 Excel
|
||||||
|
ExcelUtils.write(response, "企业.xls", "数据", EnterpriseRespVO.class, |
||||||
|
BeanUtils.toBean(list, EnterpriseRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,70 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.enterprise.vo; |
||||||
|
|
||||||
|
import lombok.*; |
||||||
|
|
||||||
|
import java.time.LocalDate; |
||||||
|
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 EnterprisePageReqVO extends PageParam { |
||||||
|
|
||||||
|
@Schema(description = "所属部门ID", example = "10990") |
||||||
|
private Long departmentId; |
||||||
|
|
||||||
|
@Schema(description = "管辖人员ID", example = "30445") |
||||||
|
private Long userId; |
||||||
|
|
||||||
|
@Schema(description = "企业类型:1.大型、2.中型、3.小型、4.环保重点", example = "2") |
||||||
|
private String type; |
||||||
|
|
||||||
|
@Schema(description = "企业所属区域:1.东区、2.西区、3.北区、4.南区") |
||||||
|
private String region; |
||||||
|
|
||||||
|
@Schema(description = "企业名称", example = "张三") |
||||||
|
private String enterprisesName; |
||||||
|
|
||||||
|
@Schema(description = "企业地址") |
||||||
|
private String address; |
||||||
|
|
||||||
|
@Schema(description = "环保负责人姓名", example = "张三") |
||||||
|
private String contactName; |
||||||
|
|
||||||
|
@Schema(description = "企业环保负责人联系电话") |
||||||
|
private String environmentalContactPhone; |
||||||
|
|
||||||
|
@Schema(description = "企业注册号") |
||||||
|
private String registrationNumber; |
||||||
|
|
||||||
|
@Schema(description = "企业图文介绍") |
||||||
|
private String introduction; |
||||||
|
|
||||||
|
@Schema(description = "企业成立时间") |
||||||
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
||||||
|
private LocalDate[] establishmentDate; |
||||||
|
|
||||||
|
@Schema(description = "企业经纬度") |
||||||
|
private String gpsLocation; |
||||||
|
|
||||||
|
@Schema(description = "创建人") |
||||||
|
private String createBy; |
||||||
|
|
||||||
|
@Schema(description = "创建时间") |
||||||
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
||||||
|
private LocalDateTime[] createTime; |
||||||
|
|
||||||
|
@Schema(description = "修改人") |
||||||
|
private String updateBy; |
||||||
|
|
||||||
|
@Schema(description = "管理部门", example = "26433") |
||||||
|
private Long managerDeptId; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,85 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.enterprise.vo; |
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema; |
||||||
|
import lombok.*; |
||||||
|
|
||||||
|
import java.time.LocalDate; |
||||||
|
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 EnterpriseRespVO { |
||||||
|
|
||||||
|
@Schema(description = "企业ID,主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "853") |
||||||
|
@ExcelProperty("企业ID,主键") |
||||||
|
private Long id; |
||||||
|
|
||||||
|
@Schema(description = "所属部门ID", example = "10990") |
||||||
|
@ExcelProperty("所属部门ID") |
||||||
|
private Long departmentId; |
||||||
|
|
||||||
|
@Schema(description = "管辖人员ID", example = "30445") |
||||||
|
@ExcelProperty("管辖人员ID") |
||||||
|
private Long userId; |
||||||
|
|
||||||
|
@Schema(description = "企业类型:1.大型、2.中型、3.小型、4.环保重点", requiredMode = Schema.RequiredMode.REQUIRED, example = "2") |
||||||
|
@ExcelProperty("企业类型:1.大型、2.中型、3.小型、4.环保重点") |
||||||
|
private String type; |
||||||
|
|
||||||
|
@Schema(description = "企业所属区域:1.东区、2.西区、3.北区、4.南区", requiredMode = Schema.RequiredMode.REQUIRED) |
||||||
|
@ExcelProperty("企业所属区域:1.东区、2.西区、3.北区、4.南区") |
||||||
|
private String region; |
||||||
|
|
||||||
|
@Schema(description = "企业名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "张三") |
||||||
|
@ExcelProperty("企业名称") |
||||||
|
private String enterprisesName; |
||||||
|
|
||||||
|
@Schema(description = "企业地址") |
||||||
|
@ExcelProperty("企业地址") |
||||||
|
private String address; |
||||||
|
|
||||||
|
@Schema(description = "环保负责人姓名", example = "张三") |
||||||
|
@ExcelProperty("环保负责人姓名") |
||||||
|
private String contactName; |
||||||
|
|
||||||
|
@Schema(description = "企业环保负责人联系电话") |
||||||
|
@ExcelProperty("企业环保负责人联系电话") |
||||||
|
private String environmentalContactPhone; |
||||||
|
|
||||||
|
@Schema(description = "企业注册号") |
||||||
|
@ExcelProperty("企业注册号") |
||||||
|
private String registrationNumber; |
||||||
|
|
||||||
|
@Schema(description = "企业图文介绍") |
||||||
|
@ExcelProperty("企业图文介绍") |
||||||
|
private String introduction; |
||||||
|
|
||||||
|
@Schema(description = "企业成立时间") |
||||||
|
@ExcelProperty("企业成立时间") |
||||||
|
private LocalDate establishmentDate; |
||||||
|
|
||||||
|
@Schema(description = "企业经纬度") |
||||||
|
@ExcelProperty("企业经纬度") |
||||||
|
private String gpsLocation; |
||||||
|
|
||||||
|
@Schema(description = "创建人") |
||||||
|
@ExcelProperty("创建人") |
||||||
|
private String createBy; |
||||||
|
|
||||||
|
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) |
||||||
|
@ExcelProperty("创建时间") |
||||||
|
private LocalDateTime createTime; |
||||||
|
|
||||||
|
@Schema(description = "修改人") |
||||||
|
@ExcelProperty("修改人") |
||||||
|
private String updateBy; |
||||||
|
|
||||||
|
@Schema(description = "管理部门", example = "26433") |
||||||
|
@ExcelProperty("管理部门") |
||||||
|
private Long managerDeptId; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,65 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.enterprise.vo; |
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema; |
||||||
|
import lombok.*; |
||||||
|
|
||||||
|
import java.time.LocalDate; |
||||||
|
import java.util.*; |
||||||
|
|
||||||
|
import javax.validation.constraints.NotEmpty; |
||||||
|
|
||||||
|
@Schema(description = "管理后台 - 企业新增/修改 Request VO") |
||||||
|
@Data |
||||||
|
public class EnterpriseSaveReqVO { |
||||||
|
|
||||||
|
@Schema(description = "企业ID,主键", requiredMode = Schema.RequiredMode.REQUIRED, example = "853") |
||||||
|
private Long id; |
||||||
|
|
||||||
|
@Schema(description = "所属部门ID", example = "10990") |
||||||
|
private Long departmentId; |
||||||
|
|
||||||
|
@Schema(description = "管辖人员ID", example = "30445") |
||||||
|
private Long userId; |
||||||
|
|
||||||
|
@Schema(description = "企业类型:1.大型、2.中型、3.小型、4.环保重点", requiredMode = Schema.RequiredMode.REQUIRED, example = "2") |
||||||
|
private String type; |
||||||
|
|
||||||
|
@Schema(description = "企业所属区域:1.东区、2.西区、3.北区、4.南区", requiredMode = Schema.RequiredMode.REQUIRED) |
||||||
|
@NotEmpty(message = "企业所属区域:1.东区、2.西区、3.北区、4.南区不能为空") |
||||||
|
private String region; |
||||||
|
|
||||||
|
@Schema(description = "企业名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "张三") |
||||||
|
@NotEmpty(message = "企业名称不能为空") |
||||||
|
private String enterprisesName; |
||||||
|
|
||||||
|
@Schema(description = "企业地址") |
||||||
|
private String address; |
||||||
|
|
||||||
|
@Schema(description = "环保负责人姓名", example = "张三") |
||||||
|
private String contactName; |
||||||
|
|
||||||
|
@Schema(description = "企业环保负责人联系电话") |
||||||
|
private String environmentalContactPhone; |
||||||
|
|
||||||
|
@Schema(description = "企业注册号") |
||||||
|
private String registrationNumber; |
||||||
|
|
||||||
|
@Schema(description = "企业图文介绍") |
||||||
|
private String introduction; |
||||||
|
|
||||||
|
@Schema(description = "企业成立时间") |
||||||
|
private LocalDate establishmentDate; |
||||||
|
|
||||||
|
@Schema(description = "企业经纬度") |
||||||
|
private String gpsLocation; |
||||||
|
|
||||||
|
@Schema(description = "创建人") |
||||||
|
private String createBy; |
||||||
|
|
||||||
|
@Schema(description = "修改人") |
||||||
|
private String updateBy; |
||||||
|
|
||||||
|
@Schema(description = "管理部门", example = "26433") |
||||||
|
private Long managerDeptId; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,93 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.dal.dataobject.enterprise; |
||||||
|
|
||||||
|
import lombok.*; |
||||||
|
|
||||||
|
import java.time.LocalDate; |
||||||
|
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("enterprises") |
||||||
|
@KeySequence("enterprises_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
|
||||||
|
@Data |
||||||
|
@EqualsAndHashCode(callSuper = true) |
||||||
|
@ToString(callSuper = true) |
||||||
|
@Builder |
||||||
|
@NoArgsConstructor |
||||||
|
@AllArgsConstructor |
||||||
|
public class EnterpriseDO extends BaseDO { |
||||||
|
|
||||||
|
/** |
||||||
|
* 企业ID,主键 |
||||||
|
*/ |
||||||
|
@TableId |
||||||
|
private Long id; |
||||||
|
/** |
||||||
|
* 所属部门ID |
||||||
|
*/ |
||||||
|
private Long departmentId; |
||||||
|
/** |
||||||
|
* 管辖人员ID |
||||||
|
*/ |
||||||
|
private Long userId; |
||||||
|
/** |
||||||
|
* 企业类型:1.大型、2.中型、3.小型、4.环保重点 |
||||||
|
*/ |
||||||
|
private String type; |
||||||
|
/** |
||||||
|
* 企业所属区域:1.东区、2.西区、3.北区、4.南区 |
||||||
|
*/ |
||||||
|
private String region; |
||||||
|
/** |
||||||
|
* 企业名称 |
||||||
|
*/ |
||||||
|
private String enterprisesName; |
||||||
|
/** |
||||||
|
* 企业地址 |
||||||
|
*/ |
||||||
|
private String address; |
||||||
|
/** |
||||||
|
* 环保负责人姓名 |
||||||
|
*/ |
||||||
|
private String contactName; |
||||||
|
/** |
||||||
|
* 企业环保负责人联系电话 |
||||||
|
*/ |
||||||
|
private String environmentalContactPhone; |
||||||
|
/** |
||||||
|
* 企业注册号 |
||||||
|
*/ |
||||||
|
private String registrationNumber; |
||||||
|
/** |
||||||
|
* 企业图文介绍 |
||||||
|
*/ |
||||||
|
private String introduction; |
||||||
|
/** |
||||||
|
* 企业成立时间 |
||||||
|
*/ |
||||||
|
private LocalDate establishmentDate; |
||||||
|
/** |
||||||
|
* 企业经纬度 |
||||||
|
*/ |
||||||
|
private String gpsLocation; |
||||||
|
/** |
||||||
|
* 创建人 |
||||||
|
*/ |
||||||
|
private String createBy; |
||||||
|
/** |
||||||
|
* 修改人 |
||||||
|
*/ |
||||||
|
private String updateBy; |
||||||
|
/** |
||||||
|
* 管理部门 |
||||||
|
*/ |
||||||
|
private Long managerDeptId; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,41 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.dal.mysql.enterprise; |
||||||
|
|
||||||
|
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.enterprise.EnterpriseDO; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.enterprise.vo.*; |
||||||
|
|
||||||
|
/** |
||||||
|
* 企业 Mapper |
||||||
|
* |
||||||
|
* @author 芋道源码 |
||||||
|
*/ |
||||||
|
@Mapper |
||||||
|
public interface EnterpriseMapper extends BaseMapperX<EnterpriseDO> { |
||||||
|
|
||||||
|
default PageResult<EnterpriseDO> selectPage(EnterprisePageReqVO reqVO) { |
||||||
|
return selectPage(reqVO, new LambdaQueryWrapperX<EnterpriseDO>() |
||||||
|
.eqIfPresent(EnterpriseDO::getDepartmentId, reqVO.getDepartmentId()) |
||||||
|
.eqIfPresent(EnterpriseDO::getUserId, reqVO.getUserId()) |
||||||
|
.eqIfPresent(EnterpriseDO::getType, reqVO.getType()) |
||||||
|
.eqIfPresent(EnterpriseDO::getRegion, reqVO.getRegion()) |
||||||
|
.likeIfPresent(EnterpriseDO::getEnterprisesName, reqVO.getEnterprisesName()) |
||||||
|
.eqIfPresent(EnterpriseDO::getAddress, reqVO.getAddress()) |
||||||
|
.likeIfPresent(EnterpriseDO::getContactName, reqVO.getContactName()) |
||||||
|
.eqIfPresent(EnterpriseDO::getEnvironmentalContactPhone, reqVO.getEnvironmentalContactPhone()) |
||||||
|
.eqIfPresent(EnterpriseDO::getRegistrationNumber, reqVO.getRegistrationNumber()) |
||||||
|
.eqIfPresent(EnterpriseDO::getIntroduction, reqVO.getIntroduction()) |
||||||
|
.betweenIfPresent(EnterpriseDO::getEstablishmentDate, reqVO.getEstablishmentDate()) |
||||||
|
.eqIfPresent(EnterpriseDO::getGpsLocation, reqVO.getGpsLocation()) |
||||||
|
.eqIfPresent(EnterpriseDO::getCreateBy, reqVO.getCreateBy()) |
||||||
|
.betweenIfPresent(EnterpriseDO::getCreateTime, reqVO.getCreateTime()) |
||||||
|
.eqIfPresent(EnterpriseDO::getUpdateBy, reqVO.getUpdateBy()) |
||||||
|
.eqIfPresent(EnterpriseDO::getManagerDeptId, reqVO.getManagerDeptId()) |
||||||
|
.orderByDesc(EnterpriseDO::getId)); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,56 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.service.enterprise; |
||||||
|
|
||||||
|
import java.util.*; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.enterprise.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.enterprise.EnterpriseDO; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageParam; |
||||||
|
|
||||||
|
import javax.validation.Valid; |
||||||
|
|
||||||
|
/** |
||||||
|
* 企业 Service 接口 |
||||||
|
* |
||||||
|
* @author 芋道源码 |
||||||
|
*/ |
||||||
|
public interface EnterpriseService { |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建企业 |
||||||
|
* |
||||||
|
* @param createReqVO 创建信息 |
||||||
|
* @return 编号 |
||||||
|
*/ |
||||||
|
Long createEnterprise(@Valid EnterpriseSaveReqVO createReqVO); |
||||||
|
|
||||||
|
/** |
||||||
|
* 更新企业 |
||||||
|
* |
||||||
|
* @param updateReqVO 更新信息 |
||||||
|
*/ |
||||||
|
void updateEnterprise(@Valid EnterpriseSaveReqVO updateReqVO); |
||||||
|
|
||||||
|
/** |
||||||
|
* 删除企业 |
||||||
|
* |
||||||
|
* @param id 编号 |
||||||
|
*/ |
||||||
|
void deleteEnterprise(Long id); |
||||||
|
|
||||||
|
/** |
||||||
|
* 获得企业 |
||||||
|
* |
||||||
|
* @param id 编号 |
||||||
|
* @return 企业 |
||||||
|
*/ |
||||||
|
EnterpriseDO getEnterprise(Long id); |
||||||
|
|
||||||
|
/** |
||||||
|
* 获得企业分页 |
||||||
|
* |
||||||
|
* @param pageReqVO 分页查询 |
||||||
|
* @return 企业分页 |
||||||
|
*/ |
||||||
|
PageResult<EnterpriseDO> getEnterprisePage(EnterprisePageReqVO pageReqVO); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,75 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.service.enterprise; |
||||||
|
|
||||||
|
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.enterprise.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.enterprise.EnterpriseDO; |
||||||
|
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.enterprise.EnterpriseMapper; |
||||||
|
|
||||||
|
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 EnterpriseServiceImpl implements EnterpriseService { |
||||||
|
|
||||||
|
@Resource |
||||||
|
private EnterpriseMapper enterpriseMapper; |
||||||
|
|
||||||
|
@Override |
||||||
|
public Long createEnterprise(EnterpriseSaveReqVO createReqVO) { |
||||||
|
// 插入
|
||||||
|
EnterpriseDO enterprise = BeanUtils.toBean(createReqVO, EnterpriseDO.class); |
||||||
|
enterpriseMapper.insert(enterprise); |
||||||
|
// 返回
|
||||||
|
return enterprise.getId(); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void updateEnterprise(EnterpriseSaveReqVO updateReqVO) { |
||||||
|
// 校验存在
|
||||||
|
validateEnterpriseExists(updateReqVO.getId()); |
||||||
|
// 更新
|
||||||
|
EnterpriseDO updateObj = BeanUtils.toBean(updateReqVO, EnterpriseDO.class); |
||||||
|
enterpriseMapper.updateById(updateObj); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void deleteEnterprise(Long id) { |
||||||
|
// 校验存在
|
||||||
|
validateEnterpriseExists(id); |
||||||
|
// 删除
|
||||||
|
enterpriseMapper.deleteById(id); |
||||||
|
} |
||||||
|
|
||||||
|
private void validateEnterpriseExists(Long id) { |
||||||
|
if (enterpriseMapper.selectById(id) == null) { |
||||||
|
throw exception(ENTERPRISE_NOT_EXISTS); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public EnterpriseDO getEnterprise(Long id) { |
||||||
|
return enterpriseMapper.selectById(id); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public PageResult<EnterpriseDO> getEnterprisePage(EnterprisePageReqVO pageReqVO) { |
||||||
|
return enterpriseMapper.selectPage(pageReqVO); |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue