24 changed files with 1701 additions and 0 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 java.util.Date; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
/** |
||||
* 异常工单申述表 实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-04 |
||||
*/ |
||||
@Data |
||||
@TableName("logpm_aftersales_appeal") |
||||
@ApiModel(value = "AftersalesAppeal对象", description = "异常工单申述表") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class AftersalesAppealEntity 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 warehouseId; |
||||
/** |
||||
* 申述理由 |
||||
*/ |
||||
@ApiModelProperty(value = "申述理由") |
||||
private String reason; |
||||
/** |
||||
* 申述人 |
||||
*/ |
||||
@ApiModelProperty(value = "申述人") |
||||
private String claimant; |
||||
/** |
||||
* 申述人ID |
||||
*/ |
||||
@ApiModelProperty(value = "申述人ID") |
||||
private Long claimantUserId; |
||||
/** |
||||
* 类型;0 待处理 1 成立 2 不成立 |
||||
*/ |
||||
@ApiModelProperty(value = "类型;0 待处理 1 成立 2 不成立") |
||||
private String typesOf; |
||||
/** |
||||
* 审核原因 |
||||
*/ |
||||
@ApiModelProperty(value = "审核原因") |
||||
private String handlingReason; |
||||
/** |
||||
* 处理人 |
||||
*/ |
||||
@ApiModelProperty(value = "处理人") |
||||
private String processedByName; |
||||
/** |
||||
* 处理时间 |
||||
*/ |
||||
@ApiModelProperty(value = "处理时间") |
||||
private Date processedDate; |
||||
/** |
||||
* 处理人ID |
||||
*/ |
||||
@ApiModelProperty(value = "处理人ID") |
||||
private Long processedById; |
||||
|
||||
} |
@ -0,0 +1,85 @@
|
||||
/* |
||||
* 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 java.util.Date; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
/** |
||||
* 工单申述实际责任人表 实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-04 |
||||
*/ |
||||
@Data |
||||
@TableName("logpm_aftersales_appeal_people") |
||||
@ApiModel(value = "AftersalesAppealPeople对象", description = "工单申述实际责任人表") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class AftersalesAppealPeopleEntity 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; |
||||
/** |
||||
* 实际责任人名称 |
||||
*/ |
||||
@ApiModelProperty(value = "实际责任人名称") |
||||
private String actualPersonName; |
||||
/** |
||||
* 实际责任人ID |
||||
*/ |
||||
@ApiModelProperty(value = "实际责任人ID") |
||||
private String actualPersonId; |
||||
/** |
||||
* 仓库ID |
||||
*/ |
||||
@ApiModelProperty(value = "仓库ID") |
||||
private String warehouseId; |
||||
|
||||
} |
@ -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.AftersalesAppealEntity; |
||||
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-04 |
||||
*/ |
||||
@FeignClient( |
||||
value = "blade-aftersalesAppeal" |
||||
) |
||||
public interface IAftersalesAppealClient { |
||||
|
||||
String API_PREFIX = "/appeal/client"; |
||||
String TOP = API_PREFIX + "/top"; |
||||
|
||||
/** |
||||
* 获取异常工单申述表列表 |
||||
* |
||||
* @param current 页号 |
||||
* @param size 页数 |
||||
* @return BladePage |
||||
*/ |
||||
@GetMapping(TOP) |
||||
BladePage<AftersalesAppealEntity> top(@RequestParam("current") Integer current, @RequestParam("size") Integer size); |
||||
|
||||
} |
@ -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.AftersalesAppealPeopleEntity; |
||||
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-04 |
||||
*/ |
||||
@FeignClient( |
||||
value = "blade-aftersalesAppealPeople" |
||||
) |
||||
public interface IAftersalesAppealPeopleClient { |
||||
|
||||
String API_PREFIX = "/appealPeople/client"; |
||||
String TOP = API_PREFIX + "/top"; |
||||
|
||||
/** |
||||
* 获取工单申述实际责任人表列表 |
||||
* |
||||
* @param current 页号 |
||||
* @param size 页数 |
||||
* @return BladePage |
||||
*/ |
||||
@GetMapping(TOP) |
||||
BladePage<AftersalesAppealPeopleEntity> 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.AftersalesAppealPeopleEntity; |
||||
import org.springblade.core.tool.node.INode; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 工单申述实际责任人表 视图实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-04 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class AftersalesAppealPeopleVO extends AftersalesAppealPeopleEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -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.AftersalesAppealEntity; |
||||
import org.springblade.core.tool.node.INode; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 异常工单申述表 视图实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-04 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class AftersalesAppealVO extends AftersalesAppealEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,163 @@
|
||||
/* |
||||
* 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 com.logpm.aftersales.dto.AftersalesAppealDTO; |
||||
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 lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.core.secure.BladeUser; |
||||
import org.springblade.core.mp.support.Condition; |
||||
import org.springblade.core.mp.support.Query; |
||||
import org.springblade.core.secure.utils.AuthUtil; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springblade.core.tool.utils.AesUtil; |
||||
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.AftersalesAppealEntity; |
||||
import com.logpm.aftersales.vo.AftersalesAppealVO; |
||||
import com.logpm.aftersales.excel.AftersalesAppealExcel; |
||||
import com.logpm.aftersales.wrapper.AftersalesAppealWrapper; |
||||
import com.logpm.aftersales.service.IAftersalesAppealService; |
||||
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.Date; |
||||
import java.util.Map; |
||||
import java.util.List; |
||||
import javax.servlet.http.HttpServletResponse; |
||||
|
||||
/** |
||||
* 异常工单申述表 控制器 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-04 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/aftersalesAppeal") |
||||
@Api(value = "异常工单申述表", tags = "异常工单申述表接口") |
||||
@Slf4j |
||||
public class AftersalesAppealController extends BladeController { |
||||
|
||||
private final IAftersalesAppealService aftersalesAppealService; |
||||
|
||||
/** |
||||
* 异常工单申述表 详情 |
||||
*/ |
||||
@GetMapping("/detail") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "详情", notes = "传入aftersalesAppeal") |
||||
public R<AftersalesAppealVO> detail(AftersalesAppealEntity aftersalesAppeal) { |
||||
AftersalesAppealEntity detail = aftersalesAppealService.getOne(Condition.getQueryWrapper(aftersalesAppeal)); |
||||
return R.data(AftersalesAppealWrapper.build().entityVO(detail)); |
||||
} |
||||
/** |
||||
* 异常工单申述表 分页 |
||||
*/ |
||||
@GetMapping("/list") |
||||
@ApiOperationSupport(order = 2) |
||||
@ApiOperation(value = "分页", notes = "传入aftersalesAppeal") |
||||
public R<IPage<AftersalesAppealVO>> list(@ApiIgnore @RequestParam Map<String, Object> aftersalesAppeal, Query query) { |
||||
IPage<AftersalesAppealEntity> pages = aftersalesAppealService.page(Condition.getPage(query), Condition.getQueryWrapper(aftersalesAppeal, AftersalesAppealEntity.class)); |
||||
return R.data(AftersalesAppealWrapper.build().pageVO(pages)); |
||||
} |
||||
|
||||
/** |
||||
* 异常工单申述表 自定义分页 |
||||
*/ |
||||
@GetMapping("/page") |
||||
@ApiOperationSupport(order = 3) |
||||
@ApiOperation(value = "分页", notes = "传入aftersalesAppeal") |
||||
public R<IPage<AftersalesAppealVO>> page(AftersalesAppealVO aftersalesAppeal, Query query) { |
||||
IPage<AftersalesAppealVO> pages = aftersalesAppealService.selectAftersalesAppealPage(Condition.getPage(query), aftersalesAppeal); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 异常工单申述表 新增 |
||||
*/ |
||||
@PostMapping("/save") |
||||
@ApiOperationSupport(order = 4) |
||||
@ApiOperation(value = "新增", notes = "传入aftersalesAppeal") |
||||
public R save(@Valid @RequestBody AftersalesAppealEntity aftersalesAppeal) { |
||||
return R.status(aftersalesAppealService.save(aftersalesAppeal)); |
||||
} |
||||
|
||||
/** |
||||
* 异常工单申述表 修改 |
||||
*/ |
||||
@PostMapping("/update") |
||||
@ApiOperationSupport(order = 5) |
||||
@ApiOperation(value = "修改", notes = "传入aftersalesAppeal") |
||||
public R update(@Valid @RequestBody AftersalesAppealEntity aftersalesAppeal) { |
||||
log.info("客服操作确定修改》》》》{}",aftersalesAppeal); |
||||
BladeUser user = AuthUtil.getUser(); |
||||
aftersalesAppeal.setProcessedByName(user.getUserName()); |
||||
aftersalesAppeal.setProcessedById(user.getUserId()); |
||||
aftersalesAppeal.setProcessedDate(new Date()); |
||||
return R.status(aftersalesAppealService.updateById(aftersalesAppeal)); |
||||
} |
||||
|
||||
/** |
||||
* 异常工单申述表 新增或修改 |
||||
*/ |
||||
@PostMapping("/submit") |
||||
@ApiOperationSupport(order = 6) |
||||
@ApiOperation(value = "新增或修改", notes = "传入aftersalesAppeal") |
||||
public R submit(@Valid @RequestBody AftersalesAppealDTO aftersalesAppeal) { |
||||
return R.status(aftersalesAppealService.saveOrUpdateOwn(aftersalesAppeal)); |
||||
} |
||||
|
||||
/** |
||||
* 异常工单申述表 删除 |
||||
*/ |
||||
@PostMapping("/remove") |
||||
@ApiOperationSupport(order = 7) |
||||
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||
return R.status(aftersalesAppealService.deleteLogic(Func.toLongList(ids))); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
*/ |
||||
@GetMapping("/export-aftersalesAppeal") |
||||
@ApiOperationSupport(order = 9) |
||||
@ApiOperation(value = "导出数据", notes = "传入aftersalesAppeal") |
||||
public void exportAftersalesAppeal(@ApiIgnore @RequestParam Map<String, Object> aftersalesAppeal, BladeUser bladeUser, HttpServletResponse response) { |
||||
QueryWrapper<AftersalesAppealEntity> queryWrapper = Condition.getQueryWrapper(aftersalesAppeal, AftersalesAppealEntity.class); |
||||
//if (!AuthUtil.isAdministrator()) {
|
||||
// queryWrapper.lambda().eq(AftersalesAppeal::getTenantId, bladeUser.getTenantId());
|
||||
//}
|
||||
queryWrapper.lambda().eq(AftersalesAppealEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED); |
||||
List<AftersalesAppealExcel> list = aftersalesAppealService.exportAftersalesAppeal(queryWrapper); |
||||
ExcelUtil.export(response, "异常工单申述表数据" + DateUtil.time(), "异常工单申述表数据表", list, AftersalesAppealExcel.class); |
||||
} |
||||
|
||||
} |
@ -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.AftersalesAppealPeopleEntity; |
||||
import com.logpm.aftersales.vo.AftersalesAppealPeopleVO; |
||||
import com.logpm.aftersales.excel.AftersalesAppealPeopleExcel; |
||||
import com.logpm.aftersales.wrapper.AftersalesAppealPeopleWrapper; |
||||
import com.logpm.aftersales.service.IAftersalesAppealPeopleService; |
||||
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-04 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/aftersalesAppealPeople") |
||||
@Api(value = "工单申述实际责任人表", tags = "工单申述实际责任人表接口") |
||||
public class AftersalesAppealPeopleController extends BladeController { |
||||
|
||||
private final IAftersalesAppealPeopleService aftersalesAppealPeopleService; |
||||
|
||||
/** |
||||
* 工单申述实际责任人表 详情 |
||||
*/ |
||||
@GetMapping("/detail") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "详情", notes = "传入aftersalesAppealPeople") |
||||
public R<AftersalesAppealPeopleVO> detail(AftersalesAppealPeopleEntity aftersalesAppealPeople) { |
||||
AftersalesAppealPeopleEntity detail = aftersalesAppealPeopleService.getOne(Condition.getQueryWrapper(aftersalesAppealPeople)); |
||||
return R.data(AftersalesAppealPeopleWrapper.build().entityVO(detail)); |
||||
} |
||||
/** |
||||
* 工单申述实际责任人表 分页 |
||||
*/ |
||||
@GetMapping("/list") |
||||
@ApiOperationSupport(order = 2) |
||||
@ApiOperation(value = "分页", notes = "传入aftersalesAppealPeople") |
||||
public R<IPage<AftersalesAppealPeopleVO>> list(@ApiIgnore @RequestParam Map<String, Object> aftersalesAppealPeople, Query query) { |
||||
IPage<AftersalesAppealPeopleEntity> pages = aftersalesAppealPeopleService.page(Condition.getPage(query), Condition.getQueryWrapper(aftersalesAppealPeople, AftersalesAppealPeopleEntity.class)); |
||||
return R.data(AftersalesAppealPeopleWrapper.build().pageVO(pages)); |
||||
} |
||||
|
||||
/** |
||||
* 工单申述实际责任人表 自定义分页 |
||||
*/ |
||||
@GetMapping("/page") |
||||
@ApiOperationSupport(order = 3) |
||||
@ApiOperation(value = "分页", notes = "传入aftersalesAppealPeople") |
||||
public R<IPage<AftersalesAppealPeopleVO>> page(AftersalesAppealPeopleVO aftersalesAppealPeople, Query query) { |
||||
IPage<AftersalesAppealPeopleVO> pages = aftersalesAppealPeopleService.selectAftersalesAppealPeoplePage(Condition.getPage(query), aftersalesAppealPeople); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 工单申述实际责任人表 新增 |
||||
*/ |
||||
@PostMapping("/save") |
||||
@ApiOperationSupport(order = 4) |
||||
@ApiOperation(value = "新增", notes = "传入aftersalesAppealPeople") |
||||
public R save(@Valid @RequestBody AftersalesAppealPeopleEntity aftersalesAppealPeople) { |
||||
return R.status(aftersalesAppealPeopleService.save(aftersalesAppealPeople)); |
||||
} |
||||
|
||||
/** |
||||
* 工单申述实际责任人表 修改 |
||||
*/ |
||||
@PostMapping("/update") |
||||
@ApiOperationSupport(order = 5) |
||||
@ApiOperation(value = "修改", notes = "传入aftersalesAppealPeople") |
||||
public R update(@Valid @RequestBody AftersalesAppealPeopleEntity aftersalesAppealPeople) { |
||||
return R.status(aftersalesAppealPeopleService.updateById(aftersalesAppealPeople)); |
||||
} |
||||
|
||||
/** |
||||
* 工单申述实际责任人表 新增或修改 |
||||
*/ |
||||
@PostMapping("/submit") |
||||
@ApiOperationSupport(order = 6) |
||||
@ApiOperation(value = "新增或修改", notes = "传入aftersalesAppealPeople") |
||||
public R submit(@Valid @RequestBody AftersalesAppealPeopleEntity aftersalesAppealPeople) { |
||||
return R.status(aftersalesAppealPeopleService.saveOrUpdate(aftersalesAppealPeople)); |
||||
} |
||||
|
||||
/** |
||||
* 工单申述实际责任人表 删除 |
||||
*/ |
||||
@PostMapping("/remove") |
||||
@ApiOperationSupport(order = 7) |
||||
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||
return R.status(aftersalesAppealPeopleService.deleteLogic(Func.toLongList(ids))); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
*/ |
||||
@GetMapping("/export-aftersalesAppealPeople") |
||||
@ApiOperationSupport(order = 9) |
||||
@ApiOperation(value = "导出数据", notes = "传入aftersalesAppealPeople") |
||||
public void exportAftersalesAppealPeople(@ApiIgnore @RequestParam Map<String, Object> aftersalesAppealPeople, BladeUser bladeUser, HttpServletResponse response) { |
||||
QueryWrapper<AftersalesAppealPeopleEntity> queryWrapper = Condition.getQueryWrapper(aftersalesAppealPeople, AftersalesAppealPeopleEntity.class); |
||||
//if (!AuthUtil.isAdministrator()) {
|
||||
// queryWrapper.lambda().eq(AftersalesAppealPeople::getTenantId, bladeUser.getTenantId());
|
||||
//}
|
||||
queryWrapper.lambda().eq(AftersalesAppealPeopleEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED); |
||||
List<AftersalesAppealPeopleExcel> list = aftersalesAppealPeopleService.exportAftersalesAppealPeople(queryWrapper); |
||||
ExcelUtil.export(response, "工单申述实际责任人表数据" + DateUtil.time(), "工单申述实际责任人表数据表", list, AftersalesAppealPeopleExcel.class); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,41 @@
|
||||
/* |
||||
* 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.AftersalesAppealEntity; |
||||
import com.logpm.aftersales.entity.AftersalesAppealPeopleEntity; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 异常工单申述表 数据传输对象实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-04 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class AftersalesAppealDTO extends AftersalesAppealEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
/** |
||||
* 实际责任人数据 |
||||
*/ |
||||
private List<AftersalesAppealPeopleEntity> peopleEntityList; |
||||
|
||||
} |
@ -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.AftersalesAppealPeopleEntity; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 工单申述实际责任人表 数据传输对象实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-04 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class AftersalesAppealPeopleDTO extends AftersalesAppealPeopleEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,147 @@
|
||||
/* |
||||
* 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 java.util.Date; |
||||
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-04 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class AftersalesAppealExcel 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 workOrderId; |
||||
/** |
||||
* 仓库ID |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("仓库ID") |
||||
private String warehouseId; |
||||
/** |
||||
* 申述理由 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("申述理由") |
||||
private String reason; |
||||
/** |
||||
* 申述人 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("申述人") |
||||
private String claimant; |
||||
/** |
||||
* 申述人ID |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("申述人ID") |
||||
private String claimantUserId; |
||||
/** |
||||
* 类型;0 待处理 1 成立 2 不成立 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("类型;0 待处理 1 成立 2 不成立") |
||||
private String typesOf; |
||||
/** |
||||
* 审核原因 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("审核原因") |
||||
private String handlingReason; |
||||
/** |
||||
* 处理人 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("处理人") |
||||
private String processedByName; |
||||
/** |
||||
* 处理时间 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("处理时间") |
||||
private String processedDate; |
||||
/** |
||||
* 处理人ID |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("处理人ID") |
||||
private String processedById; |
||||
|
||||
} |
@ -0,0 +1,111 @@
|
||||
/* |
||||
* 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 java.util.Date; |
||||
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-04 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class AftersalesAppealPeopleExcel 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 workOrderId; |
||||
/** |
||||
* 实际责任人名称 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("实际责任人名称") |
||||
private String actualPersonName; |
||||
/** |
||||
* 实际责任人ID |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("实际责任人ID") |
||||
private String actualPersonId; |
||||
/** |
||||
* 仓库ID |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("仓库ID") |
||||
private String warehouseId; |
||||
|
||||
} |
@ -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.AftersalesAppealEntity; |
||||
import com.logpm.aftersales.service.IAftersalesAppealService; |
||||
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-04 |
||||
*/ |
||||
@ApiIgnore() |
||||
@RestController |
||||
@AllArgsConstructor |
||||
public class AftersalesAppealClient implements IAftersalesAppealClient { |
||||
|
||||
private final IAftersalesAppealService aftersalesAppealService; |
||||
|
||||
@Override |
||||
@GetMapping(TOP) |
||||
public BladePage<AftersalesAppealEntity> top(Integer current, Integer size) { |
||||
Query query = new Query(); |
||||
query.setCurrent(current); |
||||
query.setSize(size); |
||||
IPage<AftersalesAppealEntity> page = aftersalesAppealService.page(Condition.getPage(query)); |
||||
return BladePage.of(page); |
||||
} |
||||
|
||||
} |
@ -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.AftersalesAppealPeopleEntity; |
||||
import com.logpm.aftersales.service.IAftersalesAppealPeopleService; |
||||
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-04 |
||||
*/ |
||||
@ApiIgnore() |
||||
@RestController |
||||
@AllArgsConstructor |
||||
public class AftersalesAppealPeopleClient implements IAftersalesAppealPeopleClient { |
||||
|
||||
private final IAftersalesAppealPeopleService aftersalesAppealPeopleService; |
||||
|
||||
@Override |
||||
@GetMapping(TOP) |
||||
public BladePage<AftersalesAppealPeopleEntity> top(Integer current, Integer size) { |
||||
Query query = new Query(); |
||||
query.setCurrent(current); |
||||
query.setSize(size); |
||||
IPage<AftersalesAppealPeopleEntity> page = aftersalesAppealPeopleService.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.AftersalesAppealEntity; |
||||
import com.logpm.aftersales.vo.AftersalesAppealVO; |
||||
import com.logpm.aftersales.excel.AftersalesAppealExcel; |
||||
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-04 |
||||
*/ |
||||
public interface AftersalesAppealMapper extends BaseMapper<AftersalesAppealEntity> { |
||||
|
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param aftersalesAppeal |
||||
* @return |
||||
*/ |
||||
List<AftersalesAppealVO> selectAftersalesAppealPage(IPage page, AftersalesAppealVO aftersalesAppeal); |
||||
|
||||
|
||||
/** |
||||
* 获取导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<AftersalesAppealExcel> exportAftersalesAppeal(@Param("ew") Wrapper<AftersalesAppealEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,43 @@
|
||||
<?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.AftersalesAppealMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="aftersalesAppealResultMap" type="com.logpm.aftersales.entity.AftersalesAppealEntity"> |
||||
<result column="tenant_id" property="tenantId"/> |
||||
<result column="id" property="id"/> |
||||
<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="work_order_id" property="workOrderId"/> |
||||
<result column="warehouse_id" property="warehouseId"/> |
||||
<result column="reason" property="reason"/> |
||||
<result column="claimant" property="claimant"/> |
||||
<result column="claimant_user_id" property="claimantUserId"/> |
||||
<result column="types_of" property="typesOf"/> |
||||
<result column="handling_reason" property="handlingReason"/> |
||||
<result column="processed_by_name" property="processedByName"/> |
||||
<result column="processed_date" property="processedDate"/> |
||||
<result column="processed_by_id" property="processedById"/> |
||||
</resultMap> |
||||
|
||||
|
||||
<select id="selectAftersalesAppealPage" resultMap="aftersalesAppealResultMap"> |
||||
select * from logpm_aftersales_appeal where is_deleted = 0 |
||||
</select> |
||||
|
||||
|
||||
<select id="exportAftersalesAppeal" resultType="com.logpm.aftersales.excel.AftersalesAppealExcel"> |
||||
SELECT * FROM logpm_aftersales_appeal ${ew.customSqlSegment} |
||||
</select> |
||||
|
||||
</mapper> |
@ -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.AftersalesAppealPeopleEntity; |
||||
import com.logpm.aftersales.vo.AftersalesAppealPeopleVO; |
||||
import com.logpm.aftersales.excel.AftersalesAppealPeopleExcel; |
||||
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-04 |
||||
*/ |
||||
public interface AftersalesAppealPeopleMapper extends BaseMapper<AftersalesAppealPeopleEntity> { |
||||
|
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param aftersalesAppealPeople |
||||
* @return |
||||
*/ |
||||
List<AftersalesAppealPeopleVO> selectAftersalesAppealPeoplePage(IPage page, AftersalesAppealPeopleVO aftersalesAppealPeople); |
||||
|
||||
|
||||
/** |
||||
* 获取导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<AftersalesAppealPeopleExcel> exportAftersalesAppealPeople(@Param("ew") Wrapper<AftersalesAppealPeopleEntity> 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.aftersales.mapper.AftersalesAppealPeopleMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="aftersalesAppealPeopleResultMap" type="com.logpm.aftersales.entity.AftersalesAppealPeopleEntity"> |
||||
<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="id" property="id"/> |
||||
<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="work_order_id" property="workOrderId"/> |
||||
<result column="actual_person_name" property="actualPersonName"/> |
||||
<result column="actual_person_id" property="actualPersonId"/> |
||||
<result column="warehouse_id" property="warehouseId"/> |
||||
</resultMap> |
||||
|
||||
|
||||
<select id="selectAftersalesAppealPeoplePage" resultMap="aftersalesAppealPeopleResultMap"> |
||||
select * from logpm_aftersales_appeal_people where is_deleted = 0 |
||||
</select> |
||||
|
||||
|
||||
<select id="exportAftersalesAppealPeople" resultType="com.logpm.aftersales.excel.AftersalesAppealPeopleExcel"> |
||||
SELECT * FROM logpm_aftersales_appeal_people ${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.AftersalesAppealPeopleEntity; |
||||
import com.logpm.aftersales.vo.AftersalesAppealPeopleVO; |
||||
import com.logpm.aftersales.excel.AftersalesAppealPeopleExcel; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 工单申述实际责任人表 服务类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-04 |
||||
*/ |
||||
public interface IAftersalesAppealPeopleService extends BaseService<AftersalesAppealPeopleEntity> { |
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param aftersalesAppealPeople |
||||
* @return |
||||
*/ |
||||
IPage<AftersalesAppealPeopleVO> selectAftersalesAppealPeoplePage(IPage<AftersalesAppealPeopleVO> page, AftersalesAppealPeopleVO aftersalesAppealPeople); |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<AftersalesAppealPeopleExcel> exportAftersalesAppealPeople(Wrapper<AftersalesAppealPeopleEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,59 @@
|
||||
/* |
||||
* 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.dto.AftersalesAppealDTO; |
||||
import com.logpm.aftersales.entity.AftersalesAppealEntity; |
||||
import com.logpm.aftersales.vo.AftersalesAppealVO; |
||||
import com.logpm.aftersales.excel.AftersalesAppealExcel; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 异常工单申述表 服务类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-04 |
||||
*/ |
||||
public interface IAftersalesAppealService extends BaseService<AftersalesAppealEntity> { |
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param aftersalesAppeal |
||||
* @return |
||||
*/ |
||||
IPage<AftersalesAppealVO> selectAftersalesAppealPage(IPage<AftersalesAppealVO> page, AftersalesAppealVO aftersalesAppeal); |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<AftersalesAppealExcel> exportAftersalesAppeal(Wrapper<AftersalesAppealEntity> queryWrapper); |
||||
|
||||
/** |
||||
* 自定义添加和修改 |
||||
* @param aftersalesAppeal |
||||
* @return |
||||
*/ |
||||
boolean saveOrUpdateOwn(AftersalesAppealDTO aftersalesAppeal); |
||||
} |
@ -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.AftersalesAppealPeopleEntity; |
||||
import com.logpm.aftersales.vo.AftersalesAppealPeopleVO; |
||||
import com.logpm.aftersales.excel.AftersalesAppealPeopleExcel; |
||||
import com.logpm.aftersales.mapper.AftersalesAppealPeopleMapper; |
||||
import com.logpm.aftersales.service.IAftersalesAppealPeopleService; |
||||
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-04 |
||||
*/ |
||||
@Service |
||||
public class AftersalesAppealPeopleServiceImpl extends BaseServiceImpl<AftersalesAppealPeopleMapper, AftersalesAppealPeopleEntity> implements IAftersalesAppealPeopleService { |
||||
|
||||
@Override |
||||
public IPage<AftersalesAppealPeopleVO> selectAftersalesAppealPeoplePage(IPage<AftersalesAppealPeopleVO> page, AftersalesAppealPeopleVO aftersalesAppealPeople) { |
||||
return page.setRecords(baseMapper.selectAftersalesAppealPeoplePage(page, aftersalesAppealPeople)); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public List<AftersalesAppealPeopleExcel> exportAftersalesAppealPeople(Wrapper<AftersalesAppealPeopleEntity> queryWrapper) { |
||||
List<AftersalesAppealPeopleExcel> aftersalesAppealPeopleList = baseMapper.exportAftersalesAppealPeople(queryWrapper); |
||||
//aftersalesAppealPeopleList.forEach(aftersalesAppealPeople -> {
|
||||
// aftersalesAppealPeople.setTypeName(DictCache.getValue(DictEnum.YES_NO, AftersalesAppealPeople.getType()));
|
||||
//});
|
||||
return aftersalesAppealPeopleList; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,127 @@
|
||||
/* |
||||
* 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 cn.hutool.core.util.ObjectUtil; |
||||
import com.baomidou.mybatisplus.core.toolkit.ObjectUtils; |
||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers; |
||||
import com.logpm.aftersales.dto.AftersalesAppealDTO; |
||||
import com.logpm.aftersales.entity.AftersalesAppealEntity; |
||||
import com.logpm.aftersales.entity.AftersalesAppealPeopleEntity; |
||||
import com.logpm.aftersales.service.IAftersalesAppealPeopleService; |
||||
import com.logpm.aftersales.vo.AftersalesAppealPeopleVO; |
||||
import com.logpm.aftersales.vo.AftersalesAppealVO; |
||||
import com.logpm.aftersales.excel.AftersalesAppealExcel; |
||||
import com.logpm.aftersales.mapper.AftersalesAppealMapper; |
||||
import com.logpm.aftersales.service.IAftersalesAppealService; |
||||
import com.logpm.basicdata.entity.BasicdataWarehouseEntity; |
||||
import com.logpm.basicdata.feign.IBasicdataWarehouseClient; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.core.log.exception.ServiceException; |
||||
import org.springblade.core.mp.base.BaseEntity; |
||||
import org.springblade.core.secure.BladeUser; |
||||
import org.springblade.core.secure.utils.AuthUtil; |
||||
import org.springblade.core.tool.utils.BeanUtil; |
||||
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; |
||||
import java.util.stream.Collectors; |
||||
|
||||
/** |
||||
* 异常工单申述表 服务实现类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-04 |
||||
*/ |
||||
@Service |
||||
@AllArgsConstructor |
||||
@Slf4j |
||||
public class AftersalesAppealServiceImpl extends BaseServiceImpl<AftersalesAppealMapper, AftersalesAppealEntity> implements IAftersalesAppealService { |
||||
|
||||
private final IAftersalesAppealPeopleService aftersalesAppealPeopleService; |
||||
|
||||
private final IBasicdataWarehouseClient basicdataWarehouseClient; |
||||
|
||||
@Override |
||||
public IPage<AftersalesAppealVO> selectAftersalesAppealPage(IPage<AftersalesAppealVO> page, AftersalesAppealVO aftersalesAppeal) { |
||||
return page.setRecords(baseMapper.selectAftersalesAppealPage(page, aftersalesAppeal)); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public List<AftersalesAppealExcel> exportAftersalesAppeal(Wrapper<AftersalesAppealEntity> queryWrapper) { |
||||
List<AftersalesAppealExcel> aftersalesAppealList = baseMapper.exportAftersalesAppeal(queryWrapper); |
||||
//aftersalesAppealList.forEach(aftersalesAppeal -> {
|
||||
// aftersalesAppeal.setTypeName(DictCache.getValue(DictEnum.YES_NO, AftersalesAppeal.getType()));
|
||||
//});
|
||||
return aftersalesAppealList; |
||||
} |
||||
|
||||
/** |
||||
* 新增和修改 |
||||
* @param aftersalesAppeal |
||||
* @return |
||||
*/ |
||||
@Override |
||||
public boolean saveOrUpdateOwn(AftersalesAppealDTO aftersalesAppeal) { |
||||
log.info("新增和修改申述信息》》{}",aftersalesAppeal); |
||||
BladeUser user = AuthUtil.getUser(); |
||||
BasicdataWarehouseEntity myCurrentWarehouse = basicdataWarehouseClient.getMyCurrentWarehouse(); |
||||
if(ObjectUtils.isNull(myCurrentWarehouse)){ |
||||
throw new ServiceException("请选择仓库!"); |
||||
} |
||||
|
||||
if(ObjectUtils.isNotNull( aftersalesAppeal.getId())){ |
||||
//修改
|
||||
if(ObjectUtils.isNotNull( aftersalesAppeal.getPeopleEntityList()) ){ |
||||
//修改实际责任人
|
||||
List<AftersalesAppealPeopleEntity> list = aftersalesAppealPeopleService.list(Wrappers.<AftersalesAppealPeopleEntity>query().lambda() |
||||
.eq(AftersalesAppealPeopleEntity::getWorkOrderId, aftersalesAppeal.getWorkOrderId()) |
||||
); |
||||
List<Long> collect = list.stream().map(AftersalesAppealPeopleEntity::getId).collect(Collectors.toList()); |
||||
aftersalesAppealPeopleService.deleteLogic(collect); |
||||
|
||||
} |
||||
baseMapper.updateById(aftersalesAppeal); |
||||
}else{ |
||||
//新增
|
||||
AftersalesAppealEntity aftersalesAppealEntity = new AftersalesAppealEntity(); |
||||
BeanUtil.copyProperties(aftersalesAppeal,aftersalesAppealEntity); |
||||
aftersalesAppeal.setClaimantUserId(user.getUserId()); |
||||
aftersalesAppeal.setClaimant(user.getUserName()); |
||||
aftersalesAppeal.setTypesOf("0"); |
||||
aftersalesAppeal.setWarehouseId(myCurrentWarehouse.getId()); |
||||
baseMapper.insert(aftersalesAppealEntity); |
||||
|
||||
} |
||||
if(ObjectUtil.isNotNull( aftersalesAppeal.getPeopleEntityList())){ |
||||
//添加实际收货人
|
||||
aftersalesAppeal.getPeopleEntityList().forEach( i ->{ |
||||
AftersalesAppealPeopleEntity aftersalesAppealPeople = new AftersalesAppealPeopleEntity(); |
||||
BeanUtil.copyProperties(i,aftersalesAppealPeople); |
||||
aftersalesAppealPeople.setWorkOrderId(aftersalesAppeal.getWorkOrderId()); |
||||
aftersalesAppealPeopleService.save(aftersalesAppealPeople); |
||||
}); |
||||
} |
||||
|
||||
return false; |
||||
} |
||||
|
||||
} |
@ -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.AftersalesAppealPeopleEntity; |
||||
import com.logpm.aftersales.vo.AftersalesAppealPeopleVO; |
||||
import java.util.Objects; |
||||
|
||||
/** |
||||
* 工单申述实际责任人表 包装类,返回视图层所需的字段 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-04 |
||||
*/ |
||||
public class AftersalesAppealPeopleWrapper extends BaseEntityWrapper<AftersalesAppealPeopleEntity, AftersalesAppealPeopleVO> { |
||||
|
||||
public static AftersalesAppealPeopleWrapper build() { |
||||
return new AftersalesAppealPeopleWrapper(); |
||||
} |
||||
|
||||
@Override |
||||
public AftersalesAppealPeopleVO entityVO(AftersalesAppealPeopleEntity aftersalesAppealPeople) { |
||||
AftersalesAppealPeopleVO aftersalesAppealPeopleVO = Objects.requireNonNull(BeanUtil.copy(aftersalesAppealPeople, AftersalesAppealPeopleVO.class)); |
||||
|
||||
//User createUser = UserCache.getUser(aftersalesAppealPeople.getCreateUser());
|
||||
//User updateUser = UserCache.getUser(aftersalesAppealPeople.getUpdateUser());
|
||||
//aftersalesAppealPeopleVO.setCreateUserName(createUser.getName());
|
||||
//aftersalesAppealPeopleVO.setUpdateUserName(updateUser.getName());
|
||||
|
||||
return aftersalesAppealPeopleVO; |
||||
} |
||||
|
||||
|
||||
} |
@ -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.AftersalesAppealEntity; |
||||
import com.logpm.aftersales.vo.AftersalesAppealVO; |
||||
import java.util.Objects; |
||||
|
||||
/** |
||||
* 异常工单申述表 包装类,返回视图层所需的字段 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-04 |
||||
*/ |
||||
public class AftersalesAppealWrapper extends BaseEntityWrapper<AftersalesAppealEntity, AftersalesAppealVO> { |
||||
|
||||
public static AftersalesAppealWrapper build() { |
||||
return new AftersalesAppealWrapper(); |
||||
} |
||||
|
||||
@Override |
||||
public AftersalesAppealVO entityVO(AftersalesAppealEntity aftersalesAppeal) { |
||||
AftersalesAppealVO aftersalesAppealVO = Objects.requireNonNull(BeanUtil.copy(aftersalesAppeal, AftersalesAppealVO.class)); |
||||
|
||||
//User createUser = UserCache.getUser(aftersalesAppeal.getCreateUser());
|
||||
//User updateUser = UserCache.getUser(aftersalesAppeal.getUpdateUser());
|
||||
//aftersalesAppealVO.setCreateUserName(createUser.getName());
|
||||
//aftersalesAppealVO.setUpdateUserName(updateUser.getName());
|
||||
|
||||
return aftersalesAppealVO; |
||||
} |
||||
|
||||
|
||||
} |
Loading…
Reference in new issue