18 changed files with 601 additions and 1 deletions
@ -0,0 +1,140 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.policy; |
||||||
|
|
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.maxkb.vo.MaxkbdocumentVo; |
||||||
|
import cn.iocoder.yudao.module.system.service.maxkb.MaxkbApiService; |
||||||
|
import org.springframework.beans.factory.annotation.Value; |
||||||
|
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.policy.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.policy.PolicyDO; |
||||||
|
import cn.iocoder.yudao.module.system.service.policy.PolicyService; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
import javax.annotation.security.PermitAll; |
||||||
|
import javax.servlet.http.HttpServletResponse; |
||||||
|
import javax.validation.Valid; |
||||||
|
|
||||||
|
@Tag(name = "管理后台 - 政策法规") |
||||||
|
@RestController |
||||||
|
@RequestMapping("/system/policy") |
||||||
|
@Validated |
||||||
|
public class PolicyController { |
||||||
|
|
||||||
|
@Resource |
||||||
|
private PolicyService policyService; |
||||||
|
|
||||||
|
@Resource |
||||||
|
private MaxkbApiService maxkbApiService; |
||||||
|
|
||||||
|
@Value("${yudao.web.url}") |
||||||
|
private String webUrl; |
||||||
|
|
||||||
|
@Value("${yudao.maxkb.policy.url}") |
||||||
|
private String policyUrl; |
||||||
|
|
||||||
|
@Value("${yudao.maxkb.policy.id}") |
||||||
|
private String policyMaxId; |
||||||
|
|
||||||
|
@PostMapping("/create") |
||||||
|
@Operation(summary = "创建政策法规") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:policy:create')") |
||||||
|
public CommonResult<Integer> createPolicy(@Valid @RequestBody PolicySaveReqVO createReqVO) { |
||||||
|
Integer policy = policyService.createPolicy(createReqVO); |
||||||
|
MaxkbdocumentVo maxkbdocumentVo =new MaxkbdocumentVo(); |
||||||
|
maxkbdocumentVo.setId(policyMaxId); |
||||||
|
maxkbdocumentVo.setSource_url_list(new String[]{getViewUrl(policy)}); |
||||||
|
|
||||||
|
maxkbApiService.pushWebUrl(maxkbdocumentVo); |
||||||
|
return success(policy); |
||||||
|
} |
||||||
|
|
||||||
|
private String getViewUrl(Integer id){ |
||||||
|
return webUrl+policyUrl+"?id="+id; |
||||||
|
} |
||||||
|
|
||||||
|
@PutMapping("/update") |
||||||
|
@Operation(summary = "更新政策法规") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:policy:update')") |
||||||
|
public CommonResult<Boolean> updatePolicy(@Valid @RequestBody PolicySaveReqVO updateReqVO) { |
||||||
|
policyService.updatePolicy(updateReqVO); |
||||||
|
String viewUrl = getViewUrl(updateReqVO.getId()); |
||||||
|
maxkbApiService.deleteByName(viewUrl,policyMaxId); |
||||||
|
MaxkbdocumentVo maxkbdocumentVo =new MaxkbdocumentVo(); |
||||||
|
maxkbdocumentVo.setId(policyMaxId); |
||||||
|
maxkbdocumentVo.setSource_url_list(new String[]{getViewUrl(updateReqVO.getId())}); |
||||||
|
maxkbApiService.pushWebUrl(maxkbdocumentVo); |
||||||
|
return success(true); |
||||||
|
} |
||||||
|
|
||||||
|
@DeleteMapping("/delete") |
||||||
|
@Operation(summary = "删除政策法规") |
||||||
|
@Parameter(name = "id", description = "编号", required = true) |
||||||
|
@PreAuthorize("@ss.hasPermission('system:policy:delete')") |
||||||
|
public CommonResult<Boolean> deletePolicy(@RequestParam("id") Integer id) { |
||||||
|
policyService.deletePolicy(id); |
||||||
|
String viewUrl = getViewUrl(id); |
||||||
|
maxkbApiService.deleteByName(viewUrl,policyMaxId); |
||||||
|
return success(true); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/get") |
||||||
|
@Operation(summary = "获得政策法规") |
||||||
|
@Parameter(name = "id", description = "编号", required = true, example = "1024") |
||||||
|
@PermitAll |
||||||
|
public CommonResult<PolicyRespDetailVO> getPolicy(@RequestParam("id") Integer id) { |
||||||
|
PolicyDO policy = policyService.getPolicy(id); |
||||||
|
return success(BeanUtils.toBean(policy, PolicyRespDetailVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/getContent") |
||||||
|
@Operation(summary = "获得政策法规") |
||||||
|
@Parameter(name = "id", description = "编号", required = true, example = "1024") |
||||||
|
@PermitAll |
||||||
|
public String getContentPolicy(@RequestParam("id") Integer id) { |
||||||
|
PolicyDO policy = policyService.getPolicy(id); |
||||||
|
String context = policy.getContext(); |
||||||
|
|
||||||
|
return "<html><body>"+context+"</body></html>"; |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/page") |
||||||
|
@Operation(summary = "获得政策法规分页") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:policy:query')") |
||||||
|
public CommonResult<PageResult<PolicyRespVO>> getPolicyPage(@Valid PolicyPageReqVO pageReqVO) { |
||||||
|
PageResult<PolicyDO> pageResult = policyService.getPolicyPage(pageReqVO); |
||||||
|
return success(BeanUtils.toBean(pageResult, PolicyRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
@GetMapping("/export-excel") |
||||||
|
@Operation(summary = "导出政策法规 Excel") |
||||||
|
@PreAuthorize("@ss.hasPermission('system:policy:export')") |
||||||
|
@ApiAccessLog(operateType = EXPORT) |
||||||
|
public void exportPolicyExcel(@Valid PolicyPageReqVO pageReqVO, |
||||||
|
HttpServletResponse response) throws IOException { |
||||||
|
pageReqVO.setPageSize(PageParam.PAGE_SIZE_NONE); |
||||||
|
List<PolicyDO> list = policyService.getPolicyPage(pageReqVO).getList(); |
||||||
|
// 导出 Excel
|
||||||
|
ExcelUtils.write(response, "政策法规.xls", "数据", PolicyRespVO.class, |
||||||
|
BeanUtils.toBean(list, PolicyRespVO.class)); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,57 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.policy; |
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.apilog.core.annotation.ApiAccessLog; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.CommonResult; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageParam; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
||||||
|
import cn.iocoder.yudao.framework.common.util.object.BeanUtils; |
||||||
|
import cn.iocoder.yudao.framework.excel.core.util.ExcelUtils; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.maxkb.vo.MaxkbdocumentVo; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.policy.vo.PolicyPageReqVO; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.policy.vo.PolicyRespDetailVO; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.policy.vo.PolicyRespVO; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.policy.vo.PolicySaveReqVO; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.policy.PolicyDO; |
||||||
|
import cn.iocoder.yudao.module.system.service.maxkb.MaxkbApiService; |
||||||
|
import cn.iocoder.yudao.module.system.service.policy.PolicyService; |
||||||
|
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.beans.factory.annotation.Value; |
||||||
|
import org.springframework.security.access.prepost.PreAuthorize; |
||||||
|
import org.springframework.stereotype.Controller; |
||||||
|
import org.springframework.validation.annotation.Validated; |
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
|
||||||
|
import javax.annotation.Resource; |
||||||
|
import javax.annotation.security.PermitAll; |
||||||
|
import javax.servlet.http.HttpServletResponse; |
||||||
|
import javax.validation.Valid; |
||||||
|
import java.io.IOException; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
import static cn.iocoder.yudao.framework.apilog.core.enums.OperateTypeEnum.EXPORT; |
||||||
|
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success; |
||||||
|
|
||||||
|
@Tag(name = "管理后台 - 政策法规") |
||||||
|
@RequestMapping("/system/policyHtml") |
||||||
|
@RestController |
||||||
|
public class PolicyHtmlController { |
||||||
|
|
||||||
|
@Resource |
||||||
|
private PolicyService policyService; |
||||||
|
|
||||||
|
|
||||||
|
@GetMapping("/getContent") |
||||||
|
@Operation(summary = "获得政策法规") |
||||||
|
@Parameter(name = "id", description = "编号", required = true, example = "1024") |
||||||
|
@PermitAll |
||||||
|
@ResponseBody |
||||||
|
public String getContentPolicy(@RequestParam("id") Integer id) { |
||||||
|
PolicyDO policy = policyService.getPolicy(id); |
||||||
|
String context = policy.getContext(); |
||||||
|
|
||||||
|
return "<html><body>"+context+"</body></html>"; |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,25 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.policy.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 PolicyPageReqVO extends PageParam { |
||||||
|
|
||||||
|
@Schema(description = "名称", example = "王五") |
||||||
|
private String name; |
||||||
|
|
||||||
|
@Schema(description = "创建时间") |
||||||
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) |
||||||
|
private LocalDateTime[] createTime; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,29 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.policy.vo; |
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
||||||
|
import com.alibaba.excel.annotation.ExcelProperty; |
||||||
|
import io.swagger.v3.oas.annotations.media.Schema; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.time.LocalDateTime; |
||||||
|
|
||||||
|
@Schema(description = "管理后台 - 政策法规 Response VO") |
||||||
|
@Data |
||||||
|
@ExcelIgnoreUnannotated |
||||||
|
public class PolicyRespDetailVO { |
||||||
|
|
||||||
|
@Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "29928") |
||||||
|
@ExcelProperty("id") |
||||||
|
private Integer id; |
||||||
|
|
||||||
|
@Schema(description = "名称", example = "王五") |
||||||
|
@ExcelProperty("名称") |
||||||
|
private String name; |
||||||
|
|
||||||
|
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) |
||||||
|
@ExcelProperty("创建时间") |
||||||
|
private LocalDateTime createTime; |
||||||
|
|
||||||
|
private String context; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,27 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.policy.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 PolicyRespVO { |
||||||
|
|
||||||
|
@Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "29928") |
||||||
|
@ExcelProperty("id") |
||||||
|
private Integer id; |
||||||
|
|
||||||
|
@Schema(description = "名称", example = "王五") |
||||||
|
@ExcelProperty("名称") |
||||||
|
private String name; |
||||||
|
|
||||||
|
@Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED) |
||||||
|
@ExcelProperty("创建时间") |
||||||
|
private LocalDateTime createTime; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,20 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.controller.admin.policy.vo; |
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema; |
||||||
|
import lombok.*; |
||||||
|
import java.util.*; |
||||||
|
|
||||||
|
@Schema(description = "管理后台 - 政策法规新增/修改 Request VO") |
||||||
|
@Data |
||||||
|
public class PolicySaveReqVO { |
||||||
|
|
||||||
|
@Schema(description = "id", requiredMode = Schema.RequiredMode.REQUIRED, example = "29928") |
||||||
|
private Integer id; |
||||||
|
|
||||||
|
@Schema(description = "名称", example = "王五") |
||||||
|
private String name; |
||||||
|
|
||||||
|
@Schema(description = "内容") |
||||||
|
private String context; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,39 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.dal.dataobject.policy; |
||||||
|
|
||||||
|
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("hb_policy") |
||||||
|
@KeySequence("hb_policy_seq") // 用于 Oracle、PostgreSQL、Kingbase、DB2、H2 数据库的主键自增。如果是 MySQL 等数据库,可不写。
|
||||||
|
@Data |
||||||
|
@EqualsAndHashCode(callSuper = true) |
||||||
|
@ToString(callSuper = true) |
||||||
|
@Builder |
||||||
|
@NoArgsConstructor |
||||||
|
@AllArgsConstructor |
||||||
|
public class PolicyDO extends BaseDO { |
||||||
|
|
||||||
|
/** |
||||||
|
* id |
||||||
|
*/ |
||||||
|
@TableId |
||||||
|
private Integer id; |
||||||
|
/** |
||||||
|
* 名称 |
||||||
|
*/ |
||||||
|
private String name; |
||||||
|
/** |
||||||
|
* 内容 |
||||||
|
*/ |
||||||
|
private String context; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,27 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.dal.mysql.policy; |
||||||
|
|
||||||
|
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.policy.PolicyDO; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.policy.vo.*; |
||||||
|
|
||||||
|
/** |
||||||
|
* 政策法规 Mapper |
||||||
|
* |
||||||
|
* @author 芋道源码 |
||||||
|
*/ |
||||||
|
@Mapper |
||||||
|
public interface PolicyMapper extends BaseMapperX<PolicyDO> { |
||||||
|
|
||||||
|
default PageResult<PolicyDO> selectPage(PolicyPageReqVO reqVO) { |
||||||
|
return selectPage(reqVO, new LambdaQueryWrapperX<PolicyDO>() |
||||||
|
.likeIfPresent(PolicyDO::getName, reqVO.getName()) |
||||||
|
.betweenIfPresent(PolicyDO::getCreateTime, reqVO.getCreateTime()) |
||||||
|
.orderByDesc(PolicyDO::getId)); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,56 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.service.policy; |
||||||
|
|
||||||
|
import java.util.*; |
||||||
|
import cn.iocoder.yudao.module.system.controller.admin.policy.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.policy.PolicyDO; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
||||||
|
import cn.iocoder.yudao.framework.common.pojo.PageParam; |
||||||
|
|
||||||
|
import javax.validation.Valid; |
||||||
|
|
||||||
|
/** |
||||||
|
* 政策法规 Service 接口 |
||||||
|
* |
||||||
|
* @author 芋道源码 |
||||||
|
*/ |
||||||
|
public interface PolicyService { |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建政策法规 |
||||||
|
* |
||||||
|
* @param createReqVO 创建信息 |
||||||
|
* @return 编号 |
||||||
|
*/ |
||||||
|
Integer createPolicy(@Valid PolicySaveReqVO createReqVO); |
||||||
|
|
||||||
|
/** |
||||||
|
* 更新政策法规 |
||||||
|
* |
||||||
|
* @param updateReqVO 更新信息 |
||||||
|
*/ |
||||||
|
void updatePolicy(@Valid PolicySaveReqVO updateReqVO); |
||||||
|
|
||||||
|
/** |
||||||
|
* 删除政策法规 |
||||||
|
* |
||||||
|
* @param id 编号 |
||||||
|
*/ |
||||||
|
void deletePolicy(Integer id); |
||||||
|
|
||||||
|
/** |
||||||
|
* 获得政策法规 |
||||||
|
* |
||||||
|
* @param id 编号 |
||||||
|
* @return 政策法规 |
||||||
|
*/ |
||||||
|
PolicyDO getPolicy(Integer id); |
||||||
|
|
||||||
|
/** |
||||||
|
* 获得政策法规分页 |
||||||
|
* |
||||||
|
* @param pageReqVO 分页查询 |
||||||
|
* @return 政策法规分页 |
||||||
|
*/ |
||||||
|
PageResult<PolicyDO> getPolicyPage(PolicyPageReqVO pageReqVO); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,75 @@ |
|||||||
|
package cn.iocoder.yudao.module.system.service.policy; |
||||||
|
|
||||||
|
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.policy.vo.*; |
||||||
|
import cn.iocoder.yudao.module.system.dal.dataobject.policy.PolicyDO; |
||||||
|
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.policy.PolicyMapper; |
||||||
|
|
||||||
|
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 PolicyServiceImpl implements PolicyService { |
||||||
|
|
||||||
|
@Resource |
||||||
|
private PolicyMapper policyMapper; |
||||||
|
|
||||||
|
@Override |
||||||
|
public Integer createPolicy(PolicySaveReqVO createReqVO) { |
||||||
|
// 插入
|
||||||
|
PolicyDO policy = BeanUtils.toBean(createReqVO, PolicyDO.class); |
||||||
|
policyMapper.insert(policy); |
||||||
|
// 返回
|
||||||
|
return policy.getId(); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void updatePolicy(PolicySaveReqVO updateReqVO) { |
||||||
|
// 校验存在
|
||||||
|
validatePolicyExists(updateReqVO.getId()); |
||||||
|
// 更新
|
||||||
|
PolicyDO updateObj = BeanUtils.toBean(updateReqVO, PolicyDO.class); |
||||||
|
policyMapper.updateById(updateObj); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void deletePolicy(Integer id) { |
||||||
|
// 校验存在
|
||||||
|
validatePolicyExists(id); |
||||||
|
// 删除
|
||||||
|
policyMapper.deleteById(id); |
||||||
|
} |
||||||
|
|
||||||
|
private void validatePolicyExists(Integer id) { |
||||||
|
if (policyMapper.selectById(id) == null) { |
||||||
|
throw exception(POLICY_NOT_EXISTS); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public PolicyDO getPolicy(Integer id) { |
||||||
|
return policyMapper.selectById(id); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public PageResult<PolicyDO> getPolicyPage(PolicyPageReqVO pageReqVO) { |
||||||
|
return policyMapper.selectPage(pageReqVO); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,12 @@ |
|||||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||||
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||||
|
<mapper namespace="cn.iocoder.yudao.module.system.dal.mysql.policy.PolicyMapper"> |
||||||
|
|
||||||
|
<!-- |
||||||
|
一般情况下,尽可能使用 Mapper 进行 CRUD 增删改查即可。 |
||||||
|
无法满足的场景,例如说多表关联查询,才使用 XML 编写 SQL。 |
||||||
|
代码生成器暂时只生成 Mapper XML 文件本身,更多推荐 MybatisX 快速开发插件来生成查询。 |
||||||
|
文档可见:https://www.iocoder.cn/MyBatis/x-plugins/ |
||||||
|
--> |
||||||
|
|
||||||
|
</mapper> |
Loading…
Reference in new issue