16 changed files with 1228 additions and 7 deletions
@ -0,0 +1,87 @@ |
|||||||
|
/* |
||||||
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are met: |
||||||
|
* |
||||||
|
* Redistributions of source code must retain the above copyright notice, |
||||||
|
* this list of conditions and the following disclaimer. |
||||||
|
* Redistributions in binary form must reproduce the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer in the |
||||||
|
* documentation and/or other materials provided with the distribution. |
||||||
|
* Neither the name of the dreamlu.net developer nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* Author: Chill 庄骞 (smallchill@163.com) |
||||||
|
*/ |
||||||
|
package com.logpm.basicdata.entity; |
||||||
|
|
||||||
|
import cn.hutool.log.Log; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import lombok.Data; |
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import java.util.Date; |
||||||
|
import java.math.BigDecimal; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
import org.springblade.core.tenant.mp.TenantEntity; |
||||||
|
|
||||||
|
/** |
||||||
|
* 区域价格费用关联 实体类 |
||||||
|
* |
||||||
|
* @author cyz |
||||||
|
* @since 2023-05-31 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@TableName("logpm_basicdata_cost_correlation") |
||||||
|
@ApiModel(value = "BasicdataCostCorrelation对象", description = "区域价格费用关联") |
||||||
|
@EqualsAndHashCode(callSuper = true) |
||||||
|
public class BasicdataCostCorrelationEntity extends TenantEntity { |
||||||
|
|
||||||
|
/** |
||||||
|
* 预留1 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "预留1") |
||||||
|
private String reserve1; |
||||||
|
/** |
||||||
|
* 预留2 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "预留2") |
||||||
|
private String reserve2; |
||||||
|
/** |
||||||
|
* 预留3 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "预留3") |
||||||
|
private String reserve3; |
||||||
|
/** |
||||||
|
* 预留4 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "预留4") |
||||||
|
private String reserve4; |
||||||
|
/** |
||||||
|
* 预留5 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "预留5") |
||||||
|
private String reserve5; |
||||||
|
/** |
||||||
|
* 区域价格ID |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "区域价格ID") |
||||||
|
private Long zonePriceId; |
||||||
|
/** |
||||||
|
* 编码 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "编码") |
||||||
|
private String coding; |
||||||
|
/** |
||||||
|
* 费用 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "费用") |
||||||
|
private BigDecimal ensue; |
||||||
|
/** |
||||||
|
* 标识 |
||||||
|
*/ |
||||||
|
@ApiModelProperty(value = "标识") |
||||||
|
private Integer identification; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,49 @@ |
|||||||
|
/* |
||||||
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are met: |
||||||
|
* |
||||||
|
* Redistributions of source code must retain the above copyright notice, |
||||||
|
* this list of conditions and the following disclaimer. |
||||||
|
* Redistributions in binary form must reproduce the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer in the |
||||||
|
* documentation and/or other materials provided with the distribution. |
||||||
|
* Neither the name of the dreamlu.net developer nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* Author: Chill 庄骞 (smallchill@163.com) |
||||||
|
*/ |
||||||
|
package com.logpm.basicdata.feign; |
||||||
|
|
||||||
|
import org.springblade.core.mp.support.BladePage; |
||||||
|
import com.logpm.basicdata.entity.BasicdataCostCorrelationEntity; |
||||||
|
import org.springframework.cloud.openfeign.FeignClient; |
||||||
|
import org.springframework.web.bind.annotation.GetMapping; |
||||||
|
import org.springframework.web.bind.annotation.RequestParam; |
||||||
|
|
||||||
|
/** |
||||||
|
* 区域价格费用关联 Feign接口类 |
||||||
|
* |
||||||
|
* @author cyz |
||||||
|
* @since 2023-05-31 |
||||||
|
*/ |
||||||
|
@FeignClient( |
||||||
|
value = "blade-basicdataCostCorrelation" |
||||||
|
) |
||||||
|
public interface IBasicdataCostCorrelationClient { |
||||||
|
|
||||||
|
String API_PREFIX = "/client"; |
||||||
|
String TOP = API_PREFIX + "/top112"; |
||||||
|
|
||||||
|
/** |
||||||
|
* 获取区域价格费用关联列表 |
||||||
|
* |
||||||
|
* @param current 页号 |
||||||
|
* @param size 页数 |
||||||
|
* @return BladePage |
||||||
|
*/ |
||||||
|
@GetMapping(TOP) |
||||||
|
BladePage<BasicdataCostCorrelationEntity> top(@RequestParam("current") Integer current, @RequestParam("size") Integer size); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,35 @@ |
|||||||
|
/* |
||||||
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are met: |
||||||
|
* |
||||||
|
* Redistributions of source code must retain the above copyright notice, |
||||||
|
* this list of conditions and the following disclaimer. |
||||||
|
* Redistributions in binary form must reproduce the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer in the |
||||||
|
* documentation and/or other materials provided with the distribution. |
||||||
|
* Neither the name of the dreamlu.net developer nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* Author: Chill 庄骞 (smallchill@163.com) |
||||||
|
*/ |
||||||
|
package com.logpm.basicdata.vo; |
||||||
|
|
||||||
|
import com.logpm.basicdata.entity.BasicdataCostCorrelationEntity; |
||||||
|
import org.springblade.core.tool.node.INode; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
|
||||||
|
/** |
||||||
|
* 区域价格费用关联 视图实体类 |
||||||
|
* |
||||||
|
* @author cyz |
||||||
|
* @since 2023-05-31 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@EqualsAndHashCode(callSuper = true) |
||||||
|
public class BasicdataCostCorrelationVO extends BasicdataCostCorrelationEntity { |
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,150 @@ |
|||||||
|
/* |
||||||
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are met: |
||||||
|
* |
||||||
|
* Redistributions of source code must retain the above copyright notice, |
||||||
|
* this list of conditions and the following disclaimer. |
||||||
|
* Redistributions in binary form must reproduce the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer in the |
||||||
|
* documentation and/or other materials provided with the distribution. |
||||||
|
* Neither the name of the dreamlu.net developer nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* Author: Chill 庄骞 (smallchill@163.com) |
||||||
|
*/ |
||||||
|
package com.logpm.basicdata.controller; |
||||||
|
|
||||||
|
import io.swagger.annotations.Api; |
||||||
|
import io.swagger.annotations.ApiOperation; |
||||||
|
import io.swagger.annotations.ApiParam; |
||||||
|
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import javax.validation.Valid; |
||||||
|
|
||||||
|
import org.springblade.core.secure.BladeUser; |
||||||
|
import org.springblade.core.mp.support.Condition; |
||||||
|
import org.springblade.core.mp.support.Query; |
||||||
|
import org.springblade.core.tool.api.R; |
||||||
|
import org.springblade.core.tool.utils.Func; |
||||||
|
import org.springframework.web.bind.annotation.*; |
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import com.logpm.basicdata.entity.BasicdataCostCorrelationEntity; |
||||||
|
import com.logpm.basicdata.vo.BasicdataCostCorrelationVO; |
||||||
|
import com.logpm.basicdata.excel.BasicdataCostCorrelationExcel; |
||||||
|
import com.logpm.basicdata.service.IBasicdataCostCorrelationService; |
||||||
|
import org.springblade.core.boot.ctrl.BladeController; |
||||||
|
import org.springblade.core.tool.utils.DateUtil; |
||||||
|
import org.springblade.core.excel.util.ExcelUtil; |
||||||
|
import org.springblade.core.tool.constant.BladeConstant; |
||||||
|
import springfox.documentation.annotations.ApiIgnore; |
||||||
|
import java.util.Map; |
||||||
|
import java.util.List; |
||||||
|
import javax.servlet.http.HttpServletResponse; |
||||||
|
|
||||||
|
/** |
||||||
|
* 区域价格费用关联 控制器 |
||||||
|
* |
||||||
|
* @author cyz |
||||||
|
* @since 2023-05-31 |
||||||
|
*/ |
||||||
|
@RestController |
||||||
|
@AllArgsConstructor |
||||||
|
@RequestMapping("/basicdataCostCorrelation") |
||||||
|
@Api(value = "区域价格费用关联", tags = "区域价格费用关联接口") |
||||||
|
public class BasicdataCostCorrelationController extends BladeController { |
||||||
|
|
||||||
|
private final IBasicdataCostCorrelationService basicdataCostCorrelationService; |
||||||
|
|
||||||
|
/** |
||||||
|
* 区域价格费用关联 详情 |
||||||
|
*/ |
||||||
|
@GetMapping("/detail") |
||||||
|
@ApiOperationSupport(order = 1) |
||||||
|
@ApiOperation(value = "详情", notes = "传入basicdataCostCorrelation") |
||||||
|
public R<BasicdataCostCorrelationEntity> detail(BasicdataCostCorrelationEntity basicdataCostCorrelation) { |
||||||
|
BasicdataCostCorrelationEntity detail = basicdataCostCorrelationService.getOne(Condition.getQueryWrapper(basicdataCostCorrelation)); |
||||||
|
return R.data(detail); |
||||||
|
} |
||||||
|
/** |
||||||
|
* 区域价格费用关联 分页 |
||||||
|
*/ |
||||||
|
@GetMapping("/list") |
||||||
|
@ApiOperationSupport(order = 2) |
||||||
|
@ApiOperation(value = "分页", notes = "传入basicdataCostCorrelation") |
||||||
|
public R<IPage<BasicdataCostCorrelationEntity>> list(@ApiIgnore @RequestParam Map<String, Object> basicdataCostCorrelation, Query query) { |
||||||
|
IPage<BasicdataCostCorrelationEntity> pages = basicdataCostCorrelationService.page(Condition.getPage(query), Condition.getQueryWrapper(basicdataCostCorrelation, BasicdataCostCorrelationEntity.class)); |
||||||
|
return R.data(pages); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 区域价格费用关联 自定义分页 |
||||||
|
*/ |
||||||
|
@GetMapping("/page") |
||||||
|
@ApiOperationSupport(order = 3) |
||||||
|
@ApiOperation(value = "分页", notes = "传入basicdataCostCorrelation") |
||||||
|
public R<IPage<BasicdataCostCorrelationVO>> page(BasicdataCostCorrelationVO basicdataCostCorrelation, Query query) { |
||||||
|
IPage<BasicdataCostCorrelationVO> pages = basicdataCostCorrelationService.selectBasicdataCostCorrelationPage(Condition.getPage(query), basicdataCostCorrelation); |
||||||
|
return R.data(pages); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 区域价格费用关联 新增 |
||||||
|
*/ |
||||||
|
@PostMapping("/save") |
||||||
|
@ApiOperationSupport(order = 4) |
||||||
|
@ApiOperation(value = "新增", notes = "传入basicdataCostCorrelation") |
||||||
|
public R save(@Valid @RequestBody BasicdataCostCorrelationEntity basicdataCostCorrelation) { |
||||||
|
return R.status(basicdataCostCorrelationService.save(basicdataCostCorrelation)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 区域价格费用关联 修改 |
||||||
|
*/ |
||||||
|
@PostMapping("/update") |
||||||
|
@ApiOperationSupport(order = 5) |
||||||
|
@ApiOperation(value = "修改", notes = "传入basicdataCostCorrelation") |
||||||
|
public R update(@Valid @RequestBody BasicdataCostCorrelationEntity basicdataCostCorrelation) { |
||||||
|
return R.status(basicdataCostCorrelationService.updateById(basicdataCostCorrelation)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 区域价格费用关联 新增或修改 |
||||||
|
*/ |
||||||
|
@PostMapping("/submit") |
||||||
|
@ApiOperationSupport(order = 6) |
||||||
|
@ApiOperation(value = "新增或修改", notes = "传入basicdataCostCorrelation") |
||||||
|
public R submit(@Valid @RequestBody BasicdataCostCorrelationEntity basicdataCostCorrelation) { |
||||||
|
return R.status(basicdataCostCorrelationService.saveOrUpdate(basicdataCostCorrelation)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 区域价格费用关联 删除 |
||||||
|
*/ |
||||||
|
@PostMapping("/remove") |
||||||
|
@ApiOperationSupport(order = 7) |
||||||
|
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||||
|
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||||
|
return R.status(basicdataCostCorrelationService.deleteLogic(Func.toLongList(ids))); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 导出数据 |
||||||
|
*/ |
||||||
|
@GetMapping("/export-basicdataCostCorrelation") |
||||||
|
@ApiOperationSupport(order = 9) |
||||||
|
@ApiOperation(value = "导出数据", notes = "传入basicdataCostCorrelation") |
||||||
|
public void exportBasicdataCostCorrelation(@ApiIgnore @RequestParam Map<String, Object> basicdataCostCorrelation, BladeUser bladeUser, HttpServletResponse response) { |
||||||
|
QueryWrapper<BasicdataCostCorrelationEntity> queryWrapper = Condition.getQueryWrapper(basicdataCostCorrelation, BasicdataCostCorrelationEntity.class); |
||||||
|
//if (!AuthUtil.isAdministrator()) {
|
||||||
|
// queryWrapper.lambda().eq(BasicdataCostCorrelation::getTenantId, bladeUser.getTenantId());
|
||||||
|
//}
|
||||||
|
queryWrapper.lambda().eq(BasicdataCostCorrelationEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED); |
||||||
|
List<BasicdataCostCorrelationExcel> list = basicdataCostCorrelationService.exportBasicdataCostCorrelation(queryWrapper); |
||||||
|
ExcelUtil.export(response, "区域价格费用关联数据" + DateUtil.time(), "区域价格费用关联数据表", list, BasicdataCostCorrelationExcel.class); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,34 @@ |
|||||||
|
/* |
||||||
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are met: |
||||||
|
* |
||||||
|
* Redistributions of source code must retain the above copyright notice, |
||||||
|
* this list of conditions and the following disclaimer. |
||||||
|
* Redistributions in binary form must reproduce the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer in the |
||||||
|
* documentation and/or other materials provided with the distribution. |
||||||
|
* Neither the name of the dreamlu.net developer nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* Author: Chill 庄骞 (smallchill@163.com) |
||||||
|
*/ |
||||||
|
package com.logpm.basicdata.dto; |
||||||
|
|
||||||
|
import com.logpm.basicdata.entity.BasicdataCostCorrelationEntity; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
|
||||||
|
/** |
||||||
|
* 区域价格费用关联 数据传输对象实体类 |
||||||
|
* |
||||||
|
* @author cyz |
||||||
|
* @since 2023-05-31 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@EqualsAndHashCode(callSuper = true) |
||||||
|
public class BasicdataCostCorrelationDTO extends BasicdataCostCorrelationEntity { |
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,112 @@ |
|||||||
|
/* |
||||||
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are met: |
||||||
|
* |
||||||
|
* Redistributions of source code must retain the above copyright notice, |
||||||
|
* this list of conditions and the following disclaimer. |
||||||
|
* Redistributions in binary form must reproduce the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer in the |
||||||
|
* documentation and/or other materials provided with the distribution. |
||||||
|
* Neither the name of the dreamlu.net developer nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* Author: Chill 庄骞 (smallchill@163.com) |
||||||
|
*/ |
||||||
|
package com.logpm.basicdata.excel; |
||||||
|
|
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.util.Date; |
||||||
|
import java.math.BigDecimal; |
||||||
|
import com.alibaba.excel.annotation.ExcelProperty; |
||||||
|
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||||
|
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
||||||
|
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 区域价格费用关联 Excel实体类 |
||||||
|
* |
||||||
|
* @author cyz |
||||||
|
* @since 2023-05-31 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@ColumnWidth(25) |
||||||
|
@HeadRowHeight(20) |
||||||
|
@ContentRowHeight(18) |
||||||
|
public class BasicdataCostCorrelationExcel implements Serializable { |
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L; |
||||||
|
|
||||||
|
/** |
||||||
|
* 租户号 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("租户号") |
||||||
|
private String tenantId; |
||||||
|
/** |
||||||
|
* 是否已删除 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("是否已删除") |
||||||
|
private Integer isDeleted; |
||||||
|
/** |
||||||
|
* 预留1 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("预留1") |
||||||
|
private String reserve1; |
||||||
|
/** |
||||||
|
* 预留2 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("预留2") |
||||||
|
private String reserve2; |
||||||
|
/** |
||||||
|
* 预留3 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("预留3") |
||||||
|
private String reserve3; |
||||||
|
/** |
||||||
|
* 预留4 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("预留4") |
||||||
|
private String reserve4; |
||||||
|
/** |
||||||
|
* 预留5 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("预留5") |
||||||
|
private String reserve5; |
||||||
|
/** |
||||||
|
* 区域价格ID |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("区域价格ID") |
||||||
|
private String zonePriceId; |
||||||
|
/** |
||||||
|
* 编码 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("编码") |
||||||
|
private String coding; |
||||||
|
/** |
||||||
|
* 费用 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("费用") |
||||||
|
private BigDecimal ensue; |
||||||
|
/** |
||||||
|
* 标识 |
||||||
|
*/ |
||||||
|
@ColumnWidth(20) |
||||||
|
@ExcelProperty("标识") |
||||||
|
private Integer identification; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,53 @@ |
|||||||
|
/* |
||||||
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are met: |
||||||
|
* |
||||||
|
* Redistributions of source code must retain the above copyright notice, |
||||||
|
* this list of conditions and the following disclaimer. |
||||||
|
* Redistributions in binary form must reproduce the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer in the |
||||||
|
* documentation and/or other materials provided with the distribution. |
||||||
|
* Neither the name of the dreamlu.net developer nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* Author: Chill 庄骞 (smallchill@163.com) |
||||||
|
*/ |
||||||
|
package com.logpm.basicdata.feign; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import lombok.AllArgsConstructor; |
||||||
|
import org.springblade.core.mp.support.BladePage; |
||||||
|
import org.springblade.core.mp.support.Condition; |
||||||
|
import org.springblade.core.mp.support.Query; |
||||||
|
import com.logpm.basicdata.entity.BasicdataCostCorrelationEntity; |
||||||
|
import com.logpm.basicdata.service.IBasicdataCostCorrelationService; |
||||||
|
import org.springframework.web.bind.annotation.GetMapping; |
||||||
|
import org.springframework.web.bind.annotation.RestController; |
||||||
|
import springfox.documentation.annotations.ApiIgnore; |
||||||
|
|
||||||
|
/** |
||||||
|
* 区域价格费用关联 Feign实现类 |
||||||
|
* |
||||||
|
* @author cyz |
||||||
|
* @since 2023-05-31 |
||||||
|
*/ |
||||||
|
@ApiIgnore() |
||||||
|
@RestController |
||||||
|
@AllArgsConstructor |
||||||
|
public class BasicdataCostCorrelationClient implements IBasicdataCostCorrelationClient { |
||||||
|
|
||||||
|
private final IBasicdataCostCorrelationService basicdataCostCorrelationService; |
||||||
|
|
||||||
|
@Override |
||||||
|
@GetMapping(TOP) |
||||||
|
public BladePage<BasicdataCostCorrelationEntity> top(Integer current, Integer size) { |
||||||
|
Query query = new Query(); |
||||||
|
query.setCurrent(current); |
||||||
|
query.setSize(size); |
||||||
|
IPage<BasicdataCostCorrelationEntity> page = basicdataCostCorrelationService.page(Condition.getPage(query)); |
||||||
|
return BladePage.of(page); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,54 @@ |
|||||||
|
/* |
||||||
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are met: |
||||||
|
* |
||||||
|
* Redistributions of source code must retain the above copyright notice, |
||||||
|
* this list of conditions and the following disclaimer. |
||||||
|
* Redistributions in binary form must reproduce the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer in the |
||||||
|
* documentation and/or other materials provided with the distribution. |
||||||
|
* Neither the name of the dreamlu.net developer nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* Author: Chill 庄骞 (smallchill@163.com) |
||||||
|
*/ |
||||||
|
package com.logpm.basicdata.mapper; |
||||||
|
|
||||||
|
import com.logpm.basicdata.entity.BasicdataCostCorrelationEntity; |
||||||
|
import com.logpm.basicdata.vo.BasicdataCostCorrelationVO; |
||||||
|
import com.logpm.basicdata.excel.BasicdataCostCorrelationExcel; |
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import org.apache.ibatis.annotations.Param; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* 区域价格费用关联 Mapper 接口 |
||||||
|
* |
||||||
|
* @author cyz |
||||||
|
* @since 2023-05-31 |
||||||
|
*/ |
||||||
|
public interface BasicdataCostCorrelationMapper extends BaseMapper<BasicdataCostCorrelationEntity> { |
||||||
|
|
||||||
|
/** |
||||||
|
* 自定义分页 |
||||||
|
* |
||||||
|
* @param page |
||||||
|
* @param basicdataCostCorrelation |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
List<BasicdataCostCorrelationVO> selectBasicdataCostCorrelationPage(IPage page, BasicdataCostCorrelationVO basicdataCostCorrelation); |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 获取导出数据 |
||||||
|
* |
||||||
|
* @param queryWrapper |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
List<BasicdataCostCorrelationExcel> exportBasicdataCostCorrelation(@Param("ew") Wrapper<BasicdataCostCorrelationEntity> queryWrapper); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,37 @@ |
|||||||
|
<?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="com.logpm.basicdata.mapper.BasicdataCostCorrelationMapper"> |
||||||
|
|
||||||
|
<!-- 通用查询映射结果 --> |
||||||
|
<resultMap id="basicdataCostCorrelationResultMap" type="com.logpm.basicdata.entity.BasicdataCostCorrelationEntity"> |
||||||
|
<result column="id" property="id"/> |
||||||
|
<result column="tenant_id" property="tenantId"/> |
||||||
|
<result column="create_user" property="createUser"/> |
||||||
|
<result column="create_time" property="createTime"/> |
||||||
|
<result column="update_user" property="updateUser"/> |
||||||
|
<result column="update_time" property="updateTime"/> |
||||||
|
<result column="status" property="status"/> |
||||||
|
<result column="is_deleted" property="isDeleted"/> |
||||||
|
<result column="create_dept" property="createDept"/> |
||||||
|
<result column="reserve1" property="reserve1"/> |
||||||
|
<result column="reserve2" property="reserve2"/> |
||||||
|
<result column="reserve3" property="reserve3"/> |
||||||
|
<result column="reserve4" property="reserve4"/> |
||||||
|
<result column="reserve5" property="reserve5"/> |
||||||
|
<result column="zone_price_id" property="zonePriceId"/> |
||||||
|
<result column="coding" property="coding"/> |
||||||
|
<result column="ensue" property="ensue"/> |
||||||
|
<result column="identification" property="identification"/> |
||||||
|
</resultMap> |
||||||
|
|
||||||
|
|
||||||
|
<select id="selectBasicdataCostCorrelationPage" resultMap="basicdataCostCorrelationResultMap"> |
||||||
|
select * from logpm_basicdata_cost_correlation where is_deleted = 0 |
||||||
|
</select> |
||||||
|
|
||||||
|
|
||||||
|
<select id="exportBasicdataCostCorrelation" resultType="com.logpm.basicdata.excel.BasicdataCostCorrelationExcel"> |
||||||
|
SELECT * FROM logpm_basicdata_cost_correlation ${ew.customSqlSegment} |
||||||
|
</select> |
||||||
|
|
||||||
|
</mapper> |
@ -0,0 +1,52 @@ |
|||||||
|
/* |
||||||
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are met: |
||||||
|
* |
||||||
|
* Redistributions of source code must retain the above copyright notice, |
||||||
|
* this list of conditions and the following disclaimer. |
||||||
|
* Redistributions in binary form must reproduce the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer in the |
||||||
|
* documentation and/or other materials provided with the distribution. |
||||||
|
* Neither the name of the dreamlu.net developer nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* Author: Chill 庄骞 (smallchill@163.com) |
||||||
|
*/ |
||||||
|
package com.logpm.basicdata.service; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||||
|
import com.logpm.basicdata.entity.BasicdataCostCorrelationEntity; |
||||||
|
import com.logpm.basicdata.vo.BasicdataCostCorrelationVO; |
||||||
|
import com.logpm.basicdata.excel.BasicdataCostCorrelationExcel; |
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import org.springblade.core.mp.base.BaseService; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* 区域价格费用关联 服务类 |
||||||
|
* |
||||||
|
* @author cyz |
||||||
|
* @since 2023-05-31 |
||||||
|
*/ |
||||||
|
public interface IBasicdataCostCorrelationService extends BaseService<BasicdataCostCorrelationEntity> { |
||||||
|
/** |
||||||
|
* 自定义分页 |
||||||
|
* |
||||||
|
* @param page |
||||||
|
* @param basicdataCostCorrelation |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
IPage<BasicdataCostCorrelationVO> selectBasicdataCostCorrelationPage(IPage<BasicdataCostCorrelationVO> page, BasicdataCostCorrelationVO basicdataCostCorrelation); |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 导出数据 |
||||||
|
* |
||||||
|
* @param queryWrapper |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
List<BasicdataCostCorrelationExcel> exportBasicdataCostCorrelation(Wrapper<BasicdataCostCorrelationEntity> queryWrapper); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,54 @@ |
|||||||
|
/* |
||||||
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are met: |
||||||
|
* |
||||||
|
* Redistributions of source code must retain the above copyright notice, |
||||||
|
* this list of conditions and the following disclaimer. |
||||||
|
* Redistributions in binary form must reproduce the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer in the |
||||||
|
* documentation and/or other materials provided with the distribution. |
||||||
|
* Neither the name of the dreamlu.net developer nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* Author: Chill 庄骞 (smallchill@163.com) |
||||||
|
*/ |
||||||
|
package com.logpm.basicdata.service.impl; |
||||||
|
|
||||||
|
import com.logpm.basicdata.entity.BasicdataCostCorrelationEntity; |
||||||
|
import com.logpm.basicdata.vo.BasicdataCostCorrelationVO; |
||||||
|
import com.logpm.basicdata.excel.BasicdataCostCorrelationExcel; |
||||||
|
import com.logpm.basicdata.mapper.BasicdataCostCorrelationMapper; |
||||||
|
import com.logpm.basicdata.service.IBasicdataCostCorrelationService; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||||
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||||
|
import org.springblade.core.mp.base.BaseServiceImpl; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* 区域价格费用关联 服务实现类 |
||||||
|
* |
||||||
|
* @author cyz |
||||||
|
* @since 2023-05-31 |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
public class BasicdataCostCorrelationServiceImpl extends BaseServiceImpl<BasicdataCostCorrelationMapper, BasicdataCostCorrelationEntity> implements IBasicdataCostCorrelationService { |
||||||
|
|
||||||
|
@Override |
||||||
|
public IPage<BasicdataCostCorrelationVO> selectBasicdataCostCorrelationPage(IPage<BasicdataCostCorrelationVO> page, BasicdataCostCorrelationVO basicdataCostCorrelation) { |
||||||
|
return page.setRecords(baseMapper.selectBasicdataCostCorrelationPage(page, basicdataCostCorrelation)); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
@Override |
||||||
|
public List<BasicdataCostCorrelationExcel> exportBasicdataCostCorrelation(Wrapper<BasicdataCostCorrelationEntity> queryWrapper) { |
||||||
|
List<BasicdataCostCorrelationExcel> basicdataCostCorrelationList = baseMapper.exportBasicdataCostCorrelation(queryWrapper); |
||||||
|
//basicdataCostCorrelationList.forEach(basicdataCostCorrelation -> {
|
||||||
|
// basicdataCostCorrelation.setTypeName(DictCache.getValue(DictEnum.YES_NO, BasicdataCostCorrelation.getType()));
|
||||||
|
//});
|
||||||
|
return basicdataCostCorrelationList; |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue