23 changed files with 995 additions and 68 deletions
@ -0,0 +1,115 @@
|
||||
/* |
||||
* 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.aftersales.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import lombok.Data; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* 异常工单沟通回复方 实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-26 |
||||
*/ |
||||
@Data |
||||
@TableName("logpm_aftersales_replying_party") |
||||
@ApiModel(value = "AftersalesReplyingParty对象", description = "异常工单沟通回复方") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class AftersalesReplyingPartyEntity 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 workOrderId; |
||||
/** |
||||
* 处理人ID |
||||
*/ |
||||
@ApiModelProperty(value = "处理人ID") |
||||
private Long processedById; |
||||
/** |
||||
* 处理人名称 |
||||
*/ |
||||
@ApiModelProperty(value = "处理人名称") |
||||
private Long processedByName; |
||||
/** |
||||
* 指派时间 |
||||
*/ |
||||
private Date assignTime; |
||||
|
||||
/** |
||||
* 指定的跟进仓库ID |
||||
*/ |
||||
@ApiModelProperty(value = "指定的跟进仓库ID") |
||||
private Long followWarehouseId; |
||||
/** |
||||
* 指定的跟进仓库名称 |
||||
*/ |
||||
@ApiModelProperty(value = "指定的跟进仓库名称") |
||||
private String followWarehouseName; |
||||
/** |
||||
* 类型 1 正常 |
||||
*/ |
||||
@ApiModelProperty(value = "类型 1 正常") |
||||
private String typesOf; |
||||
/** |
||||
* 处理方ID |
||||
*/ |
||||
@ApiModelProperty(value = "处理方ID") |
||||
private Long processorId; |
||||
/** |
||||
* 类状态 1未回复 2 已回复 |
||||
*/ |
||||
@ApiModelProperty(value = "状态 1未回复 2 已回复") |
||||
private String difference; |
||||
/** |
||||
* 调查记录ID |
||||
*/ |
||||
@ApiModelProperty(value = "调查记录ID") |
||||
private Long surveyRecordId; |
||||
|
||||
} |
@ -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.aftersales.feign; |
||||
|
||||
import org.springblade.core.mp.support.BladePage; |
||||
import com.logpm.aftersales.entity.AftersalesReplyingPartyEntity; |
||||
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-12-26 |
||||
*/ |
||||
@FeignClient( |
||||
value = "blade-aftersalesReplyingParty" |
||||
) |
||||
public interface IAftersalesReplyingPartyClient { |
||||
|
||||
String API_PREFIX = "/replyingParty/client"; |
||||
String TOP = API_PREFIX + "/top"; |
||||
|
||||
/** |
||||
* 获取异常工单沟通回复方列表 |
||||
* |
||||
* @param current 页号 |
||||
* @param size 页数 |
||||
* @return BladePage |
||||
*/ |
||||
@GetMapping(TOP) |
||||
BladePage<AftersalesReplyingPartyEntity> 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.aftersales.vo; |
||||
|
||||
import com.logpm.aftersales.entity.AftersalesReplyingPartyEntity; |
||||
import org.springblade.core.tool.node.INode; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 异常工单沟通回复方 视图实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-26 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class AftersalesReplyingPartyVO extends AftersalesReplyingPartyEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,151 @@
|
||||
/* |
||||
* 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.aftersales.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.aftersales.entity.AftersalesReplyingPartyEntity; |
||||
import com.logpm.aftersales.vo.AftersalesReplyingPartyVO; |
||||
import com.logpm.aftersales.excel.AftersalesReplyingPartyExcel; |
||||
import com.logpm.aftersales.wrapper.AftersalesReplyingPartyWrapper; |
||||
import com.logpm.aftersales.service.IAftersalesReplyingPartyService; |
||||
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-12-26 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("blade-aftersalesReplyingParty/aftersalesReplyingParty") |
||||
@Api(value = "异常工单沟通回复方", tags = "异常工单沟通回复方接口") |
||||
public class AftersalesReplyingPartyController extends BladeController { |
||||
|
||||
private final IAftersalesReplyingPartyService aftersalesReplyingPartyService; |
||||
|
||||
/** |
||||
* 异常工单沟通回复方 详情 |
||||
*/ |
||||
@GetMapping("/detail") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "详情", notes = "传入aftersalesReplyingParty") |
||||
public R<AftersalesReplyingPartyVO> detail(AftersalesReplyingPartyEntity aftersalesReplyingParty) { |
||||
AftersalesReplyingPartyEntity detail = aftersalesReplyingPartyService.getOne(Condition.getQueryWrapper(aftersalesReplyingParty)); |
||||
return R.data(AftersalesReplyingPartyWrapper.build().entityVO(detail)); |
||||
} |
||||
/** |
||||
* 异常工单沟通回复方 分页 |
||||
*/ |
||||
@GetMapping("/list") |
||||
@ApiOperationSupport(order = 2) |
||||
@ApiOperation(value = "分页", notes = "传入aftersalesReplyingParty") |
||||
public R<IPage<AftersalesReplyingPartyVO>> list(@ApiIgnore @RequestParam Map<String, Object> aftersalesReplyingParty, Query query) { |
||||
IPage<AftersalesReplyingPartyEntity> pages = aftersalesReplyingPartyService.page(Condition.getPage(query), Condition.getQueryWrapper(aftersalesReplyingParty, AftersalesReplyingPartyEntity.class)); |
||||
return R.data(AftersalesReplyingPartyWrapper.build().pageVO(pages)); |
||||
} |
||||
|
||||
/** |
||||
* 异常工单沟通回复方 自定义分页 |
||||
*/ |
||||
@GetMapping("/page") |
||||
@ApiOperationSupport(order = 3) |
||||
@ApiOperation(value = "分页", notes = "传入aftersalesReplyingParty") |
||||
public R<IPage<AftersalesReplyingPartyVO>> page(AftersalesReplyingPartyVO aftersalesReplyingParty, Query query) { |
||||
IPage<AftersalesReplyingPartyVO> pages = aftersalesReplyingPartyService.selectAftersalesReplyingPartyPage(Condition.getPage(query), aftersalesReplyingParty); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 异常工单沟通回复方 新增 |
||||
*/ |
||||
@PostMapping("/save") |
||||
@ApiOperationSupport(order = 4) |
||||
@ApiOperation(value = "新增", notes = "传入aftersalesReplyingParty") |
||||
public R save(@Valid @RequestBody AftersalesReplyingPartyEntity aftersalesReplyingParty) { |
||||
return R.status(aftersalesReplyingPartyService.save(aftersalesReplyingParty)); |
||||
} |
||||
|
||||
/** |
||||
* 异常工单沟通回复方 修改 |
||||
*/ |
||||
@PostMapping("/update") |
||||
@ApiOperationSupport(order = 5) |
||||
@ApiOperation(value = "修改", notes = "传入aftersalesReplyingParty") |
||||
public R update(@Valid @RequestBody AftersalesReplyingPartyEntity aftersalesReplyingParty) { |
||||
return R.status(aftersalesReplyingPartyService.updateById(aftersalesReplyingParty)); |
||||
} |
||||
|
||||
/** |
||||
* 异常工单沟通回复方 新增或修改 |
||||
*/ |
||||
@PostMapping("/submit") |
||||
@ApiOperationSupport(order = 6) |
||||
@ApiOperation(value = "新增或修改", notes = "传入aftersalesReplyingParty") |
||||
public R submit(@Valid @RequestBody AftersalesReplyingPartyEntity aftersalesReplyingParty) { |
||||
return R.status(aftersalesReplyingPartyService.saveOrUpdate(aftersalesReplyingParty)); |
||||
} |
||||
|
||||
/** |
||||
* 异常工单沟通回复方 删除 |
||||
*/ |
||||
@PostMapping("/remove") |
||||
@ApiOperationSupport(order = 7) |
||||
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||
return R.status(aftersalesReplyingPartyService.deleteLogic(Func.toLongList(ids))); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
*/ |
||||
@GetMapping("/export-aftersalesReplyingParty") |
||||
@ApiOperationSupport(order = 9) |
||||
@ApiOperation(value = "导出数据", notes = "传入aftersalesReplyingParty") |
||||
public void exportAftersalesReplyingParty(@ApiIgnore @RequestParam Map<String, Object> aftersalesReplyingParty, BladeUser bladeUser, HttpServletResponse response) { |
||||
QueryWrapper<AftersalesReplyingPartyEntity> queryWrapper = Condition.getQueryWrapper(aftersalesReplyingParty, AftersalesReplyingPartyEntity.class); |
||||
//if (!AuthUtil.isAdministrator()) {
|
||||
// queryWrapper.lambda().eq(AftersalesReplyingParty::getTenantId, bladeUser.getTenantId());
|
||||
//}
|
||||
queryWrapper.lambda().eq(AftersalesReplyingPartyEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED); |
||||
List<AftersalesReplyingPartyExcel> list = aftersalesReplyingPartyService.exportAftersalesReplyingParty(queryWrapper); |
||||
ExcelUtil.export(response, "异常工单沟通回复方数据" + DateUtil.time(), "异常工单沟通回复方数据表", list, AftersalesReplyingPartyExcel.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.aftersales.dto; |
||||
|
||||
import com.logpm.aftersales.entity.AftersalesReplyingPartyEntity; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 异常工单沟通回复方 数据传输对象实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-26 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class AftersalesReplyingPartyDTO extends AftersalesReplyingPartyEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,44 @@
|
||||
/* |
||||
* 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.aftersales.excel; |
||||
|
||||
|
||||
import lombok.Data; |
||||
|
||||
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-12-26 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class AftersalesReplyingPartyExcel implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
|
||||
} |
@ -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.aftersales.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.aftersales.entity.AftersalesReplyingPartyEntity; |
||||
import com.logpm.aftersales.service.IAftersalesReplyingPartyService; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
import springfox.documentation.annotations.ApiIgnore; |
||||
|
||||
/** |
||||
* 异常工单沟通回复方 Feign实现类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-26 |
||||
*/ |
||||
@ApiIgnore() |
||||
@RestController |
||||
@AllArgsConstructor |
||||
public class AftersalesReplyingPartyClient implements IAftersalesReplyingPartyClient { |
||||
|
||||
private final IAftersalesReplyingPartyService aftersalesReplyingPartyService; |
||||
|
||||
@Override |
||||
@GetMapping(TOP) |
||||
public BladePage<AftersalesReplyingPartyEntity> top(Integer current, Integer size) { |
||||
Query query = new Query(); |
||||
query.setCurrent(current); |
||||
query.setSize(size); |
||||
IPage<AftersalesReplyingPartyEntity> page = aftersalesReplyingPartyService.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.aftersales.mapper; |
||||
|
||||
import com.logpm.aftersales.entity.AftersalesReplyingPartyEntity; |
||||
import com.logpm.aftersales.vo.AftersalesReplyingPartyVO; |
||||
import com.logpm.aftersales.excel.AftersalesReplyingPartyExcel; |
||||
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-12-26 |
||||
*/ |
||||
public interface AftersalesReplyingPartyMapper extends BaseMapper<AftersalesReplyingPartyEntity> { |
||||
|
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param aftersalesReplyingParty |
||||
* @return |
||||
*/ |
||||
List<AftersalesReplyingPartyVO> selectAftersalesReplyingPartyPage(IPage page, AftersalesReplyingPartyVO aftersalesReplyingParty); |
||||
|
||||
|
||||
/** |
||||
* 获取导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<AftersalesReplyingPartyExcel> exportAftersalesReplyingParty(@Param("ew") Wrapper<AftersalesReplyingPartyEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,19 @@
|
||||
<?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.aftersales.mapper.AftersalesReplyingPartyMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="aftersalesReplyingPartyResultMap" type="com.logpm.aftersales.entity.AftersalesReplyingPartyEntity"> |
||||
</resultMap> |
||||
|
||||
|
||||
<select id="selectAftersalesReplyingPartyPage" resultMap="aftersalesReplyingPartyResultMap"> |
||||
select * from logpm_aftersales_replying_party where is_deleted = 0 |
||||
</select> |
||||
|
||||
|
||||
<select id="exportAftersalesReplyingParty" resultType="com.logpm.aftersales.excel.AftersalesReplyingPartyExcel"> |
||||
SELECT * FROM logpm_aftersales_replying_party ${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.aftersales.service; |
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.logpm.aftersales.entity.AftersalesReplyingPartyEntity; |
||||
import com.logpm.aftersales.vo.AftersalesReplyingPartyVO; |
||||
import com.logpm.aftersales.excel.AftersalesReplyingPartyExcel; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 异常工单沟通回复方 服务类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-26 |
||||
*/ |
||||
public interface IAftersalesReplyingPartyService extends BaseService<AftersalesReplyingPartyEntity> { |
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param aftersalesReplyingParty |
||||
* @return |
||||
*/ |
||||
IPage<AftersalesReplyingPartyVO> selectAftersalesReplyingPartyPage(IPage<AftersalesReplyingPartyVO> page, AftersalesReplyingPartyVO aftersalesReplyingParty); |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<AftersalesReplyingPartyExcel> exportAftersalesReplyingParty(Wrapper<AftersalesReplyingPartyEntity> 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.aftersales.service.impl; |
||||
|
||||
import com.logpm.aftersales.entity.AftersalesReplyingPartyEntity; |
||||
import com.logpm.aftersales.vo.AftersalesReplyingPartyVO; |
||||
import com.logpm.aftersales.excel.AftersalesReplyingPartyExcel; |
||||
import com.logpm.aftersales.mapper.AftersalesReplyingPartyMapper; |
||||
import com.logpm.aftersales.service.IAftersalesReplyingPartyService; |
||||
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-12-26 |
||||
*/ |
||||
@Service |
||||
public class AftersalesReplyingPartyServiceImpl extends BaseServiceImpl<AftersalesReplyingPartyMapper, AftersalesReplyingPartyEntity> implements IAftersalesReplyingPartyService { |
||||
|
||||
@Override |
||||
public IPage<AftersalesReplyingPartyVO> selectAftersalesReplyingPartyPage(IPage<AftersalesReplyingPartyVO> page, AftersalesReplyingPartyVO aftersalesReplyingParty) { |
||||
return page.setRecords(baseMapper.selectAftersalesReplyingPartyPage(page, aftersalesReplyingParty)); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public List<AftersalesReplyingPartyExcel> exportAftersalesReplyingParty(Wrapper<AftersalesReplyingPartyEntity> queryWrapper) { |
||||
List<AftersalesReplyingPartyExcel> aftersalesReplyingPartyList = baseMapper.exportAftersalesReplyingParty(queryWrapper); |
||||
//aftersalesReplyingPartyList.forEach(aftersalesReplyingParty -> {
|
||||
// aftersalesReplyingParty.setTypeName(DictCache.getValue(DictEnum.YES_NO, AftersalesReplyingParty.getType()));
|
||||
//});
|
||||
return aftersalesReplyingPartyList; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,50 @@
|
||||
/* |
||||
* 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.aftersales.wrapper; |
||||
|
||||
import org.springblade.core.mp.support.BaseEntityWrapper; |
||||
import org.springblade.core.tool.utils.BeanUtil; |
||||
import com.logpm.aftersales.entity.AftersalesReplyingPartyEntity; |
||||
import com.logpm.aftersales.vo.AftersalesReplyingPartyVO; |
||||
import java.util.Objects; |
||||
|
||||
/** |
||||
* 异常工单沟通回复方 包装类,返回视图层所需的字段 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-26 |
||||
*/ |
||||
public class AftersalesReplyingPartyWrapper extends BaseEntityWrapper<AftersalesReplyingPartyEntity, AftersalesReplyingPartyVO> { |
||||
|
||||
public static AftersalesReplyingPartyWrapper build() { |
||||
return new AftersalesReplyingPartyWrapper(); |
||||
} |
||||
|
||||
@Override |
||||
public AftersalesReplyingPartyVO entityVO(AftersalesReplyingPartyEntity aftersalesReplyingParty) { |
||||
AftersalesReplyingPartyVO aftersalesReplyingPartyVO = Objects.requireNonNull(BeanUtil.copy(aftersalesReplyingParty, AftersalesReplyingPartyVO.class)); |
||||
|
||||
//User createUser = UserCache.getUser(aftersalesReplyingParty.getCreateUser());
|
||||
//User updateUser = UserCache.getUser(aftersalesReplyingParty.getUpdateUser());
|
||||
//aftersalesReplyingPartyVO.setCreateUserName(createUser.getName());
|
||||
//aftersalesReplyingPartyVO.setUpdateUserName(updateUser.getName());
|
||||
|
||||
return aftersalesReplyingPartyVO; |
||||
} |
||||
|
||||
|
||||
} |
Loading…
Reference in new issue