106 changed files with 4412 additions and 665 deletions
@ -0,0 +1,123 @@
|
||||
/* |
||||
* 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-09 |
||||
*/ |
||||
@Data |
||||
@TableName("logpm_aftersale_survey_record") |
||||
@ApiModel(value = "AftersaleSurveyRecord对象", description = "工单调查记录表") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class AftersaleSurveyRecordEntity 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; |
||||
/** |
||||
* 添加人名称 |
||||
*/ |
||||
@ApiModelProperty(value = "添加人名称") |
||||
private String addPeople; |
||||
/** |
||||
* 添加部门名称 |
||||
*/ |
||||
@ApiModelProperty(value = "添加部门名称") |
||||
private String addDepartment; |
||||
/** |
||||
* 内容 |
||||
*/ |
||||
@ApiModelProperty(value = "内容") |
||||
private String content; |
||||
/** |
||||
* 类型 |
||||
*/ |
||||
@ApiModelProperty(value = "类型") |
||||
private String typesOf; |
||||
/** |
||||
* 区别 |
||||
*/ |
||||
@ApiModelProperty(value = "区别") |
||||
private String difference; |
||||
/** |
||||
* 工单ID |
||||
*/ |
||||
@ApiModelProperty(value = "工单ID") |
||||
private Long workOrderId; |
||||
|
||||
/** |
||||
* 处理结果 |
||||
*/ |
||||
@ApiModelProperty(value = "处理结果") |
||||
private String processingResults; |
||||
|
||||
/** |
||||
* 跟进仓库名称 |
||||
*/ |
||||
@ApiModelProperty(value = "跟进仓库名称") |
||||
private String followWarehouseName; |
||||
|
||||
|
||||
/** |
||||
* 跟进仓库ID |
||||
*/ |
||||
@ApiModelProperty(value = "跟进仓库ID") |
||||
private Long followWarehouseId; |
||||
|
||||
|
||||
/** |
||||
* 备注 |
||||
*/ |
||||
@ApiModelProperty(value = "备注") |
||||
private String remark; |
||||
|
||||
|
||||
|
||||
} |
@ -0,0 +1,105 @@
|
||||
/* |
||||
* 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-09 |
||||
*/ |
||||
@Data |
||||
@TableName("logpm_aftersales_person_responsible") |
||||
@ApiModel(value = "AftersalesPersonResponsible对象", description = "异常工单预计责任人") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class AftersalesPersonResponsibleEntity 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 wordOrderId; |
||||
/** |
||||
* 责任人ID |
||||
*/ |
||||
@ApiModelProperty(value = "责任人ID") |
||||
private String personResponsibleId; |
||||
/** |
||||
* 责任人名称 |
||||
*/ |
||||
@ApiModelProperty(value = "责任人名称") |
||||
private String personResponsibleName; |
||||
/** |
||||
* 责任比例 |
||||
*/ |
||||
@ApiModelProperty(value = "责任比例") |
||||
private String responsibilityRatio; |
||||
/** |
||||
* 类型 |
||||
*/ |
||||
@ApiModelProperty(value = "类型") |
||||
private String typesOf; |
||||
/** |
||||
* 区别 |
||||
*/ |
||||
@ApiModelProperty(value = "区别") |
||||
private String difference; |
||||
/** |
||||
* 责任方名称 |
||||
*/ |
||||
@ApiModelProperty(value = "责任方名称") |
||||
private String businessName; |
||||
/** |
||||
* 责任方ID |
||||
*/ |
||||
@ApiModelProperty(value = "责任方ID") |
||||
private Long businessId; |
||||
|
||||
} |
@ -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.feign; |
||||
|
||||
import org.springblade.common.constant.ModuleNameConstant; |
||||
import org.springblade.core.mp.support.BladePage; |
||||
import com.logpm.aftersales.entity.AftersaleSurveyRecordEntity; |
||||
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-09 |
||||
*/ |
||||
@FeignClient( |
||||
value = ModuleNameConstant.APPLICATION_AFTERSALES_NAME |
||||
) |
||||
public interface IAftersaleSurveyRecordClient { |
||||
|
||||
String API_PREFIX = "/surveyRecord/client"; |
||||
String TOP = API_PREFIX + "/top"; |
||||
|
||||
/** |
||||
* 获取工单调查记录表列表 |
||||
* |
||||
* @param current 页号 |
||||
* @param size 页数 |
||||
* @return BladePage |
||||
*/ |
||||
@GetMapping(TOP) |
||||
BladePage<AftersaleSurveyRecordEntity> top(@RequestParam("current") Integer current, @RequestParam("size") Integer size); |
||||
|
||||
} |
@ -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.feign; |
||||
|
||||
import org.springblade.common.constant.ModuleNameConstant; |
||||
import org.springblade.core.mp.support.BladePage; |
||||
import com.logpm.aftersales.entity.AftersalesPersonResponsibleEntity; |
||||
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-09 |
||||
*/ |
||||
@FeignClient( |
||||
value = ModuleNameConstant.APPLICATION_AFTERSALES_NAME |
||||
) |
||||
public interface IAftersalesPersonResponsibleClient { |
||||
|
||||
String API_PREFIX = "/personResponsible/client"; |
||||
String TOP = API_PREFIX + "/top"; |
||||
|
||||
/** |
||||
* 获取异常工单预计责任人列表 |
||||
* |
||||
* @param current 页号 |
||||
* @param size 页数 |
||||
* @return BladePage |
||||
*/ |
||||
@GetMapping(TOP) |
||||
BladePage<AftersalesPersonResponsibleEntity> 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.AftersaleSurveyRecordEntity; |
||||
import org.springblade.core.tool.node.INode; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 工单调查记录表 视图实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-09 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class AftersaleSurveyRecordVO extends AftersaleSurveyRecordEntity { |
||||
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.AftersalesPersonResponsibleEntity; |
||||
import org.springblade.core.tool.node.INode; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 异常工单预计责任人 视图实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-09 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class AftersalesPersonResponsibleVO extends AftersalesPersonResponsibleEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,86 @@
|
||||
package com.logpm.trunkline.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
@Data |
||||
@TableName("logpm_trunkline_cars_loading_log") |
||||
@ApiModel(value = "TrunklineCarsLoadingLog对象", description = "干线装车记录表") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class TrunklineCarsLoadingLogEntity extends TenantEntity { |
||||
|
||||
/** 预留1 */ |
||||
@ApiModelProperty(name = "预留1",notes = "") |
||||
private String reserve1 ; |
||||
/** 预留2 */ |
||||
@ApiModelProperty(name = "预留2",notes = "") |
||||
private String reserve2 ; |
||||
/** 预留3 */ |
||||
@ApiModelProperty(name = "预留3",notes = "") |
||||
private String reserve3 ; |
||||
/** 预留4 */ |
||||
@ApiModelProperty(name = "预留4",notes = "") |
||||
private String reserve4 ; |
||||
/** 预留5 */ |
||||
@ApiModelProperty(name = "预留5",notes = "") |
||||
private String reserve5 ; |
||||
/** 仓库id */ |
||||
@ApiModelProperty(name = "仓库id",notes = "") |
||||
private Long warehouseId ; |
||||
/** 仓库名称 */ |
||||
@ApiModelProperty(name = "仓库名称",notes = "") |
||||
private String warehouseName ; |
||||
/** 配载id */ |
||||
@ApiModelProperty(name = "配载id",notes = "") |
||||
private Long loadId ; |
||||
/** 配载批次号 */ |
||||
@ApiModelProperty(name = "配载批次号",notes = "") |
||||
private String loadCode ; |
||||
/** 运单id */ |
||||
@ApiModelProperty(name = "运单id",notes = "") |
||||
private Long waybillId ; |
||||
/** 运单号 */ |
||||
@ApiModelProperty(name = "运单号",notes = "") |
||||
private String waybillNo ; |
||||
/** 订单号 */ |
||||
@ApiModelProperty(name = "订单号",notes = "") |
||||
private String orderCode ; |
||||
/** 包件码/品类名 */ |
||||
@ApiModelProperty(name = "包件码/品类名",notes = "") |
||||
private String scanCode ; |
||||
/** 数量 */ |
||||
@ApiModelProperty(name = "数量",notes = "") |
||||
private Integer num ; |
||||
/** 类型 1订制品 2零担 */ |
||||
@ApiModelProperty(name = "类型 1订制品 2零担",notes = "") |
||||
private Integer type ; |
||||
/** 有无数据 1有 0无 */ |
||||
@ApiModelProperty(name = "有无数据 1有 0无",notes = "") |
||||
private Integer isData ; |
||||
/** 是否异常 1是 0否 */ |
||||
@ApiModelProperty(name = "是否异常 1是 0否",notes = "") |
||||
private Integer isAbnormal ; |
||||
/** 托盘码 */ |
||||
@ApiModelProperty(name = "托盘码",notes = "") |
||||
private String trayCode ; |
||||
/** 托盘名称 */ |
||||
@ApiModelProperty(name = "托盘名称",notes = "") |
||||
private String trayName ; |
||||
/** 托盘id */ |
||||
@ApiModelProperty(name = "托盘id",notes = "") |
||||
private Long trayId ; |
||||
/** 来源仓库id */ |
||||
@ApiModelProperty(name = "来源仓库id",notes = "") |
||||
private Long fromWarehouseId ; |
||||
/** 装车记录id */ |
||||
@ApiModelProperty(name = "装车记录id",notes = "") |
||||
private Long loadScanId ; |
||||
/** 备注 */ |
||||
@ApiModelProperty(name = "备注",notes = "") |
||||
private String remark ; |
||||
|
||||
} |
@ -0,0 +1,16 @@
|
||||
package com.logpm.trunkline.vo; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
@Data |
||||
public class LoadScanOrderVO implements Serializable { |
||||
|
||||
private String orderCode; |
||||
private String waybillNo; |
||||
private Integer totalNum; |
||||
private Integer planNum; |
||||
private Integer realNum; |
||||
|
||||
} |
@ -0,0 +1,16 @@
|
||||
package com.logpm.trunkline.vo; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
@Data |
||||
public class OrderScanDetailVO implements Serializable { |
||||
|
||||
private Long loadScanId; |
||||
private String scanCode; |
||||
private Integer num; |
||||
private String trayName; |
||||
private String trayCode; |
||||
|
||||
} |
@ -0,0 +1,16 @@
|
||||
package com.logpm.trunkline.vo; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
|
||||
@Data |
||||
public class UnloadPackageVO implements Serializable { |
||||
|
||||
private String orderPackageCode; |
||||
private Integer num; |
||||
private String trayName; |
||||
private String trayCode; |
||||
private String scanStatus; |
||||
|
||||
} |
@ -0,0 +1,20 @@
|
||||
package com.logpm.trunkline.vo; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
|
||||
@Data |
||||
public class UnloadScanOrderVO implements Serializable { |
||||
|
||||
private String waybillNo; |
||||
private String orderCode; |
||||
private Integer loadingNum; |
||||
private Integer unloadNum; |
||||
|
||||
private List<UnloadPackageVO> unloadPackageList = new ArrayList<>(); |
||||
|
||||
|
||||
} |
@ -0,0 +1,30 @@
|
||||
package com.logpm.aftersales.bean; |
||||
|
||||
import lombok.Data; |
||||
import org.springblade.core.tool.api.R; |
||||
|
||||
@Data |
||||
public class Res extends R { |
||||
|
||||
private String audio; |
||||
|
||||
private Object obj; |
||||
|
||||
public static Res scanSuccess(String msg, String audio,Object obj){ |
||||
Res resp = new Res(); |
||||
resp.setCode(200); |
||||
resp.setMsg(msg); |
||||
resp.setAudio(audio); |
||||
resp.setObj(obj); |
||||
return resp; |
||||
} |
||||
|
||||
// public static Res scanFail(String msg, String audio){
|
||||
// Res resp = new Res();
|
||||
// resp.setCode(3001);
|
||||
// resp.setMsg(msg);
|
||||
// resp.setAudio(audio);
|
||||
// return resp;
|
||||
// }
|
||||
|
||||
} |
@ -0,0 +1,36 @@
|
||||
package com.logpm.aftersales.bean; |
||||
|
||||
import lombok.Data; |
||||
import org.springblade.core.tool.api.R; |
||||
|
||||
@Data |
||||
public class Resp extends R { |
||||
|
||||
private String audio; |
||||
|
||||
public static Resp scanSuccess(String msg,String audio){ |
||||
Resp resp = new Resp(); |
||||
resp.setCode(200); |
||||
resp.setMsg(msg); |
||||
resp.setAudio(audio); |
||||
return resp; |
||||
} |
||||
|
||||
public static Resp scanFail(String msg,String audio){ |
||||
Resp resp = new Resp(); |
||||
resp.setCode(3001); |
||||
resp.setMsg(msg); |
||||
resp.setAudio(audio); |
||||
return resp; |
||||
} |
||||
|
||||
public static Resp scanFail(int code,String msg,String audio,Object data){ |
||||
Resp resp = new Resp(); |
||||
resp.setCode(code); |
||||
resp.setMsg(msg); |
||||
resp.setData(data); |
||||
resp.setAudio(audio); |
||||
return resp; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,152 @@
|
||||
/* |
||||
* 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.AftersaleSurveyRecordDTO; |
||||
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.AftersaleSurveyRecordEntity; |
||||
import com.logpm.aftersales.vo.AftersaleSurveyRecordVO; |
||||
import com.logpm.aftersales.excel.AftersaleSurveyRecordExcel; |
||||
import com.logpm.aftersales.wrapper.AftersaleSurveyRecordWrapper; |
||||
import com.logpm.aftersales.service.IAftersaleSurveyRecordService; |
||||
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-09 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("blade-aftersaleSurveyRecord/aftersaleSurveyRecord") |
||||
@Api(value = "工单调查记录表", tags = "工单调查记录表接口") |
||||
public class AftersaleSurveyRecordController extends BladeController { |
||||
|
||||
private final IAftersaleSurveyRecordService aftersaleSurveyRecordService; |
||||
|
||||
/** |
||||
* 工单调查记录表 详情 |
||||
*/ |
||||
@GetMapping("/detail") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "详情", notes = "传入aftersaleSurveyRecord") |
||||
public R<AftersaleSurveyRecordVO> detail(AftersaleSurveyRecordEntity aftersaleSurveyRecord) { |
||||
AftersaleSurveyRecordEntity detail = aftersaleSurveyRecordService.getOne(Condition.getQueryWrapper(aftersaleSurveyRecord)); |
||||
return R.data(AftersaleSurveyRecordWrapper.build().entityVO(detail)); |
||||
} |
||||
/** |
||||
* 工单调查记录表 分页 |
||||
*/ |
||||
@GetMapping("/list") |
||||
@ApiOperationSupport(order = 2) |
||||
@ApiOperation(value = "分页", notes = "传入aftersaleSurveyRecord") |
||||
public R<IPage<AftersaleSurveyRecordVO>> list(@ApiIgnore @RequestParam Map<String, Object> aftersaleSurveyRecord, Query query) { |
||||
IPage<AftersaleSurveyRecordEntity> pages = aftersaleSurveyRecordService.page(Condition.getPage(query), Condition.getQueryWrapper(aftersaleSurveyRecord, AftersaleSurveyRecordEntity.class)); |
||||
return R.data(AftersaleSurveyRecordWrapper.build().pageVO(pages)); |
||||
} |
||||
|
||||
/** |
||||
* 工单调查记录表 自定义分页 |
||||
*/ |
||||
@GetMapping("/page") |
||||
@ApiOperationSupport(order = 3) |
||||
@ApiOperation(value = "分页", notes = "传入aftersaleSurveyRecord") |
||||
public R<IPage<AftersaleSurveyRecordVO>> page(AftersaleSurveyRecordVO aftersaleSurveyRecord, Query query) { |
||||
IPage<AftersaleSurveyRecordVO> pages = aftersaleSurveyRecordService.selectAftersaleSurveyRecordPage(Condition.getPage(query), aftersaleSurveyRecord); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 工单调查记录表 新增 |
||||
*/ |
||||
@PostMapping("/save") |
||||
@ApiOperationSupport(order = 4) |
||||
@ApiOperation(value = "新增", notes = "传入aftersaleSurveyRecord") |
||||
public R save(@Valid @RequestBody AftersaleSurveyRecordEntity aftersaleSurveyRecord) { |
||||
return R.status(aftersaleSurveyRecordService.save(aftersaleSurveyRecord)); |
||||
} |
||||
|
||||
/** |
||||
* 工单调查记录表 修改 |
||||
*/ |
||||
@PostMapping("/update") |
||||
@ApiOperationSupport(order = 5) |
||||
@ApiOperation(value = "修改", notes = "传入aftersaleSurveyRecord") |
||||
public R update(@Valid @RequestBody AftersaleSurveyRecordEntity aftersaleSurveyRecord) { |
||||
return R.status(aftersaleSurveyRecordService.updateById(aftersaleSurveyRecord)); |
||||
} |
||||
|
||||
/** |
||||
* 工单调查记录表 新增或修改 |
||||
*/ |
||||
@PostMapping("/submit") |
||||
@ApiOperationSupport(order = 6) |
||||
@ApiOperation(value = "新增或修改", notes = "传入aftersaleSurveyRecord") |
||||
public R submit(@Valid @RequestBody AftersaleSurveyRecordDTO aftersaleSurveyRecord) { |
||||
return R.status(aftersaleSurveyRecordService.saveOrUpdateOwn(aftersaleSurveyRecord)); |
||||
} |
||||
|
||||
/** |
||||
* 工单调查记录表 删除 |
||||
*/ |
||||
@PostMapping("/remove") |
||||
@ApiOperationSupport(order = 7) |
||||
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||
return R.status(aftersaleSurveyRecordService.deleteLogic(Func.toLongList(ids))); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
*/ |
||||
@GetMapping("/export-aftersaleSurveyRecord") |
||||
@ApiOperationSupport(order = 9) |
||||
@ApiOperation(value = "导出数据", notes = "传入aftersaleSurveyRecord") |
||||
public void exportAftersaleSurveyRecord(@ApiIgnore @RequestParam Map<String, Object> aftersaleSurveyRecord, BladeUser bladeUser, HttpServletResponse response) { |
||||
QueryWrapper<AftersaleSurveyRecordEntity> queryWrapper = Condition.getQueryWrapper(aftersaleSurveyRecord, AftersaleSurveyRecordEntity.class); |
||||
//if (!AuthUtil.isAdministrator()) {
|
||||
// queryWrapper.lambda().eq(AftersaleSurveyRecord::getTenantId, bladeUser.getTenantId());
|
||||
//}
|
||||
queryWrapper.lambda().eq(AftersaleSurveyRecordEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED); |
||||
List<AftersaleSurveyRecordExcel> list = aftersaleSurveyRecordService.exportAftersaleSurveyRecord(queryWrapper); |
||||
ExcelUtil.export(response, "工单调查记录表数据" + DateUtil.time(), "工单调查记录表数据表", list, AftersaleSurveyRecordExcel.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.AftersalesPersonResponsibleEntity; |
||||
import com.logpm.aftersales.vo.AftersalesPersonResponsibleVO; |
||||
import com.logpm.aftersales.excel.AftersalesPersonResponsibleExcel; |
||||
import com.logpm.aftersales.wrapper.AftersalesPersonResponsibleWrapper; |
||||
import com.logpm.aftersales.service.IAftersalesPersonResponsibleService; |
||||
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-09 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("blade-aftersalesPersonResponsible/aftersalesPersonResponsible") |
||||
@Api(value = "异常工单预计责任人", tags = "异常工单预计责任人接口") |
||||
public class AftersalesPersonResponsibleController extends BladeController { |
||||
|
||||
private final IAftersalesPersonResponsibleService aftersalesPersonResponsibleService; |
||||
|
||||
/** |
||||
* 异常工单预计责任人 详情 |
||||
*/ |
||||
@GetMapping("/detail") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "详情", notes = "传入aftersalesPersonResponsible") |
||||
public R<AftersalesPersonResponsibleVO> detail(AftersalesPersonResponsibleEntity aftersalesPersonResponsible) { |
||||
AftersalesPersonResponsibleEntity detail = aftersalesPersonResponsibleService.getOne(Condition.getQueryWrapper(aftersalesPersonResponsible)); |
||||
return R.data(AftersalesPersonResponsibleWrapper.build().entityVO(detail)); |
||||
} |
||||
/** |
||||
* 异常工单预计责任人 分页 |
||||
*/ |
||||
@GetMapping("/list") |
||||
@ApiOperationSupport(order = 2) |
||||
@ApiOperation(value = "分页", notes = "传入aftersalesPersonResponsible") |
||||
public R<IPage<AftersalesPersonResponsibleVO>> list(@ApiIgnore @RequestParam Map<String, Object> aftersalesPersonResponsible, Query query) { |
||||
IPage<AftersalesPersonResponsibleEntity> pages = aftersalesPersonResponsibleService.page(Condition.getPage(query), Condition.getQueryWrapper(aftersalesPersonResponsible, AftersalesPersonResponsibleEntity.class)); |
||||
return R.data(AftersalesPersonResponsibleWrapper.build().pageVO(pages)); |
||||
} |
||||
|
||||
/** |
||||
* 异常工单预计责任人 自定义分页 |
||||
*/ |
||||
@GetMapping("/page") |
||||
@ApiOperationSupport(order = 3) |
||||
@ApiOperation(value = "分页", notes = "传入aftersalesPersonResponsible") |
||||
public R<IPage<AftersalesPersonResponsibleVO>> page(AftersalesPersonResponsibleVO aftersalesPersonResponsible, Query query) { |
||||
IPage<AftersalesPersonResponsibleVO> pages = aftersalesPersonResponsibleService.selectAftersalesPersonResponsiblePage(Condition.getPage(query), aftersalesPersonResponsible); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 异常工单预计责任人 新增 |
||||
*/ |
||||
@PostMapping("/save") |
||||
@ApiOperationSupport(order = 4) |
||||
@ApiOperation(value = "新增", notes = "传入aftersalesPersonResponsible") |
||||
public R save(@Valid @RequestBody AftersalesPersonResponsibleEntity aftersalesPersonResponsible) { |
||||
return R.status(aftersalesPersonResponsibleService.save(aftersalesPersonResponsible)); |
||||
} |
||||
|
||||
/** |
||||
* 异常工单预计责任人 修改 |
||||
*/ |
||||
@PostMapping("/update") |
||||
@ApiOperationSupport(order = 5) |
||||
@ApiOperation(value = "修改", notes = "传入aftersalesPersonResponsible") |
||||
public R update(@Valid @RequestBody AftersalesPersonResponsibleEntity aftersalesPersonResponsible) { |
||||
return R.status(aftersalesPersonResponsibleService.updateById(aftersalesPersonResponsible)); |
||||
} |
||||
|
||||
/** |
||||
* 异常工单预计责任人 新增或修改 |
||||
*/ |
||||
@PostMapping("/submit") |
||||
@ApiOperationSupport(order = 6) |
||||
@ApiOperation(value = "新增或修改", notes = "传入aftersalesPersonResponsible") |
||||
public R submit(@Valid @RequestBody AftersalesPersonResponsibleEntity aftersalesPersonResponsible) { |
||||
return R.status(aftersalesPersonResponsibleService.saveOrUpdate(aftersalesPersonResponsible)); |
||||
} |
||||
|
||||
/** |
||||
* 异常工单预计责任人 删除 |
||||
*/ |
||||
@PostMapping("/remove") |
||||
@ApiOperationSupport(order = 7) |
||||
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||
return R.status(aftersalesPersonResponsibleService.deleteLogic(Func.toLongList(ids))); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
*/ |
||||
@GetMapping("/export-aftersalesPersonResponsible") |
||||
@ApiOperationSupport(order = 9) |
||||
@ApiOperation(value = "导出数据", notes = "传入aftersalesPersonResponsible") |
||||
public void exportAftersalesPersonResponsible(@ApiIgnore @RequestParam Map<String, Object> aftersalesPersonResponsible, BladeUser bladeUser, HttpServletResponse response) { |
||||
QueryWrapper<AftersalesPersonResponsibleEntity> queryWrapper = Condition.getQueryWrapper(aftersalesPersonResponsible, AftersalesPersonResponsibleEntity.class); |
||||
//if (!AuthUtil.isAdministrator()) {
|
||||
// queryWrapper.lambda().eq(AftersalesPersonResponsible::getTenantId, bladeUser.getTenantId());
|
||||
//}
|
||||
queryWrapper.lambda().eq(AftersalesPersonResponsibleEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED); |
||||
List<AftersalesPersonResponsibleExcel> list = aftersalesPersonResponsibleService.exportAftersalesPersonResponsible(queryWrapper); |
||||
ExcelUtil.export(response, "异常工单预计责任人数据" + DateUtil.time(), "异常工单预计责任人数据表", list, AftersalesPersonResponsibleExcel.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.AftersaleSurveyRecordEntity; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 工单调查记录表 数据传输对象实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-09 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class AftersaleSurveyRecordDTO extends AftersaleSurveyRecordEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,46 @@
|
||||
package com.logpm.aftersales.dto; |
||||
|
||||
|
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 配送装车签收发起工单包件扫描DTO |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = false) |
||||
public class AftersalesPackageScanDTO { |
||||
|
||||
/** |
||||
* 配送任务ID |
||||
*/ |
||||
private Long deliveryId; |
||||
|
||||
/** |
||||
* 预约客户ID |
||||
*/ |
||||
private Long reservationId; |
||||
|
||||
// /**
|
||||
// * 司机名称
|
||||
// */
|
||||
// private String driverName;
|
||||
//
|
||||
// /**
|
||||
// * 车牌号
|
||||
// */
|
||||
// private String vehicleNub;
|
||||
//
|
||||
// /**
|
||||
// * 配送任务ID
|
||||
// */
|
||||
// private String vehicleNub;
|
||||
|
||||
|
||||
/** |
||||
* 扫描码值 |
||||
*/ |
||||
private String scanBarCode; |
||||
|
||||
|
||||
} |
@ -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.AftersalesPersonResponsibleEntity; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 异常工单预计责任人 数据传输对象实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-09 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class AftersalesPersonResponsibleDTO extends AftersalesPersonResponsibleEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,123 @@
|
||||
/* |
||||
* 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-09 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class AftersaleSurveyRecordExcel 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; |
||||
/** |
||||
* 添加人名称 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("添加人名称") |
||||
private String addPeople; |
||||
/** |
||||
* 添加部门名称 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("添加部门名称") |
||||
private String addDepartment; |
||||
/** |
||||
* 内容 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("内容") |
||||
private String content; |
||||
/** |
||||
* 类型 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("类型") |
||||
private String typesOf; |
||||
/** |
||||
* 区别 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("区别") |
||||
private String difference; |
||||
/** |
||||
* 工单ID |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("工单ID") |
||||
private String workOrderId; |
||||
|
||||
} |
@ -0,0 +1,123 @@
|
||||
/* |
||||
* 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-09 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class AftersalesPersonResponsibleExcel 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 wordOrderId; |
||||
/** |
||||
* 责任人ID |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("责任人ID") |
||||
private String personResponsibleId; |
||||
/** |
||||
* 责任人名称 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("责任人名称") |
||||
private String personResponsibleName; |
||||
/** |
||||
* 责任比例 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("责任比例") |
||||
private String responsibilityRatio; |
||||
/** |
||||
* 类型 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("类型") |
||||
private String typesOf; |
||||
/** |
||||
* 区别 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("区别") |
||||
private String difference; |
||||
|
||||
} |
@ -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.AftersaleSurveyRecordEntity; |
||||
import com.logpm.aftersales.service.IAftersaleSurveyRecordService; |
||||
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-09 |
||||
*/ |
||||
@ApiIgnore() |
||||
@RestController |
||||
@AllArgsConstructor |
||||
public class AftersaleSurveyRecordClient implements IAftersaleSurveyRecordClient { |
||||
|
||||
private final IAftersaleSurveyRecordService aftersaleSurveyRecordService; |
||||
|
||||
@Override |
||||
@GetMapping(TOP) |
||||
public BladePage<AftersaleSurveyRecordEntity> top(Integer current, Integer size) { |
||||
Query query = new Query(); |
||||
query.setCurrent(current); |
||||
query.setSize(size); |
||||
IPage<AftersaleSurveyRecordEntity> page = aftersaleSurveyRecordService.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.AftersalesPersonResponsibleEntity; |
||||
import com.logpm.aftersales.service.IAftersalesPersonResponsibleService; |
||||
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-09 |
||||
*/ |
||||
@ApiIgnore() |
||||
@RestController |
||||
@AllArgsConstructor |
||||
public class AftersalesPersonResponsibleClient implements IAftersalesPersonResponsibleClient { |
||||
|
||||
private final IAftersalesPersonResponsibleService aftersalesPersonResponsibleService; |
||||
|
||||
@Override |
||||
@GetMapping(TOP) |
||||
public BladePage<AftersalesPersonResponsibleEntity> top(Integer current, Integer size) { |
||||
Query query = new Query(); |
||||
query.setCurrent(current); |
||||
query.setSize(size); |
||||
IPage<AftersalesPersonResponsibleEntity> page = aftersalesPersonResponsibleService.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.AftersaleSurveyRecordEntity; |
||||
import com.logpm.aftersales.vo.AftersaleSurveyRecordVO; |
||||
import com.logpm.aftersales.excel.AftersaleSurveyRecordExcel; |
||||
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-09 |
||||
*/ |
||||
public interface AftersaleSurveyRecordMapper extends BaseMapper<AftersaleSurveyRecordEntity> { |
||||
|
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param aftersaleSurveyRecord |
||||
* @return |
||||
*/ |
||||
List<AftersaleSurveyRecordVO> selectAftersaleSurveyRecordPage(IPage page, AftersaleSurveyRecordVO aftersaleSurveyRecord); |
||||
|
||||
|
||||
/** |
||||
* 获取导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<AftersaleSurveyRecordExcel> exportAftersaleSurveyRecord(@Param("ew") Wrapper<AftersaleSurveyRecordEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,39 @@
|
||||
<?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.AftersaleSurveyRecordMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="aftersaleSurveyRecordResultMap" type="com.logpm.aftersales.entity.AftersaleSurveyRecordEntity"> |
||||
<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="add_people" property="addPeople"/> |
||||
<result column="add_department" property="addDepartment"/> |
||||
<result column="content" property="content"/> |
||||
<result column="types_of" property="typesOf"/> |
||||
<result column="difference" property="difference"/> |
||||
<result column="work_order_id" property="workOrderId"/> |
||||
</resultMap> |
||||
|
||||
|
||||
<select id="selectAftersaleSurveyRecordPage" resultMap="aftersaleSurveyRecordResultMap"> |
||||
select * from logpm_aftersale_survey_record where is_deleted = 0 |
||||
</select> |
||||
|
||||
|
||||
<select id="exportAftersaleSurveyRecord" resultType="com.logpm.aftersales.excel.AftersaleSurveyRecordExcel"> |
||||
SELECT * FROM logpm_aftersale_survey_record ${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.AftersalesPersonResponsibleEntity; |
||||
import com.logpm.aftersales.vo.AftersalesPersonResponsibleVO; |
||||
import com.logpm.aftersales.excel.AftersalesPersonResponsibleExcel; |
||||
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-09 |
||||
*/ |
||||
public interface AftersalesPersonResponsibleMapper extends BaseMapper<AftersalesPersonResponsibleEntity> { |
||||
|
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param aftersalesPersonResponsible |
||||
* @return |
||||
*/ |
||||
List<AftersalesPersonResponsibleVO> selectAftersalesPersonResponsiblePage(IPage page, AftersalesPersonResponsibleVO aftersalesPersonResponsible); |
||||
|
||||
|
||||
/** |
||||
* 获取导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<AftersalesPersonResponsibleExcel> exportAftersalesPersonResponsible(@Param("ew") Wrapper<AftersalesPersonResponsibleEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,39 @@
|
||||
<?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.AftersalesPersonResponsibleMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="aftersalesPersonResponsibleResultMap" type="com.logpm.aftersales.entity.AftersalesPersonResponsibleEntity"> |
||||
<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="word_order_id" property="wordOrderId"/> |
||||
<result column="person_responsible_id" property="personResponsibleId"/> |
||||
<result column="person_responsible_name" property="personResponsibleName"/> |
||||
<result column="responsibility_ratio" property="responsibilityRatio"/> |
||||
<result column="types_of" property="typesOf"/> |
||||
<result column="difference" property="difference"/> |
||||
</resultMap> |
||||
|
||||
|
||||
<select id="selectAftersalesPersonResponsiblePage" resultMap="aftersalesPersonResponsibleResultMap"> |
||||
select * from logpm_aftersales_person_responsible where is_deleted = 0 |
||||
</select> |
||||
|
||||
|
||||
<select id="exportAftersalesPersonResponsible" resultType="com.logpm.aftersales.excel.AftersalesPersonResponsibleExcel"> |
||||
SELECT * FROM logpm_aftersales_person_responsible ${ew.customSqlSegment} |
||||
</select> |
||||
|
||||
</mapper> |
@ -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.AftersaleSurveyRecordDTO; |
||||
import com.logpm.aftersales.entity.AftersaleSurveyRecordEntity; |
||||
import com.logpm.aftersales.vo.AftersaleSurveyRecordVO; |
||||
import com.logpm.aftersales.excel.AftersaleSurveyRecordExcel; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 工单调查记录表 服务类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-09 |
||||
*/ |
||||
public interface IAftersaleSurveyRecordService extends BaseService<AftersaleSurveyRecordEntity> { |
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param aftersaleSurveyRecord |
||||
* @return |
||||
*/ |
||||
IPage<AftersaleSurveyRecordVO> selectAftersaleSurveyRecordPage(IPage<AftersaleSurveyRecordVO> page, AftersaleSurveyRecordVO aftersaleSurveyRecord); |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<AftersaleSurveyRecordExcel> exportAftersaleSurveyRecord(Wrapper<AftersaleSurveyRecordEntity> queryWrapper); |
||||
|
||||
/** |
||||
* 添加或修改 |
||||
* @param aftersaleSurveyRecord |
||||
* @return |
||||
*/ |
||||
boolean saveOrUpdateOwn(AftersaleSurveyRecordDTO aftersaleSurveyRecord); |
||||
} |
@ -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.AftersalesPersonResponsibleEntity; |
||||
import com.logpm.aftersales.vo.AftersalesPersonResponsibleVO; |
||||
import com.logpm.aftersales.excel.AftersalesPersonResponsibleExcel; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 异常工单预计责任人 服务类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-09 |
||||
*/ |
||||
public interface IAftersalesPersonResponsibleService extends BaseService<AftersalesPersonResponsibleEntity> { |
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param aftersalesPersonResponsible |
||||
* @return |
||||
*/ |
||||
IPage<AftersalesPersonResponsibleVO> selectAftersalesPersonResponsiblePage(IPage<AftersalesPersonResponsibleVO> page, AftersalesPersonResponsibleVO aftersalesPersonResponsible); |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<AftersalesPersonResponsibleExcel> exportAftersalesPersonResponsible(Wrapper<AftersalesPersonResponsibleEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,78 @@
|
||||
/* |
||||
* 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.baomidou.mybatisplus.core.toolkit.ObjectUtils; |
||||
import com.logpm.aftersales.dto.AftersaleSurveyRecordDTO; |
||||
import com.logpm.aftersales.entity.AftersaleSurveyRecordEntity; |
||||
import com.logpm.aftersales.vo.AftersaleSurveyRecordVO; |
||||
import com.logpm.aftersales.excel.AftersaleSurveyRecordExcel; |
||||
import com.logpm.aftersales.mapper.AftersaleSurveyRecordMapper; |
||||
import com.logpm.aftersales.service.IAftersaleSurveyRecordService; |
||||
import org.springblade.core.mp.base.BaseEntity; |
||||
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; |
||||
|
||||
/** |
||||
* 工单调查记录表 服务实现类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-09 |
||||
*/ |
||||
@Service |
||||
public class AftersaleSurveyRecordServiceImpl extends BaseServiceImpl<AftersaleSurveyRecordMapper, AftersaleSurveyRecordEntity> implements IAftersaleSurveyRecordService { |
||||
|
||||
@Override |
||||
public IPage<AftersaleSurveyRecordVO> selectAftersaleSurveyRecordPage(IPage<AftersaleSurveyRecordVO> page, AftersaleSurveyRecordVO aftersaleSurveyRecord) { |
||||
return page.setRecords(baseMapper.selectAftersaleSurveyRecordPage(page, aftersaleSurveyRecord)); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public List<AftersaleSurveyRecordExcel> exportAftersaleSurveyRecord(Wrapper<AftersaleSurveyRecordEntity> queryWrapper) { |
||||
List<AftersaleSurveyRecordExcel> aftersaleSurveyRecordList = baseMapper.exportAftersaleSurveyRecord(queryWrapper); |
||||
//aftersaleSurveyRecordList.forEach(aftersaleSurveyRecord -> {
|
||||
// aftersaleSurveyRecord.setTypeName(DictCache.getValue(DictEnum.YES_NO, AftersaleSurveyRecord.getType()));
|
||||
//});
|
||||
return aftersaleSurveyRecordList; |
||||
} |
||||
|
||||
/** |
||||
* 添加或修改信息 |
||||
* @param aftersaleSurveyRecord |
||||
* @return |
||||
*/ |
||||
@Override |
||||
public boolean saveOrUpdateOwn(AftersaleSurveyRecordDTO aftersaleSurveyRecord) { |
||||
if(ObjectUtils.isNotNull(aftersaleSurveyRecord.getId())){ |
||||
//修改
|
||||
return false; |
||||
}else{ |
||||
//添加
|
||||
AftersaleSurveyRecordEntity surveyRecordEntity = new AftersaleSurveyRecordEntity(); |
||||
BeanUtil.copyProperties(aftersaleSurveyRecord,aftersaleSurveyRecord); |
||||
baseMapper.insert(surveyRecordEntity); |
||||
return true; |
||||
} |
||||
|
||||
} |
||||
|
||||
} |
@ -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.AftersalesPersonResponsibleEntity; |
||||
import com.logpm.aftersales.vo.AftersalesPersonResponsibleVO; |
||||
import com.logpm.aftersales.excel.AftersalesPersonResponsibleExcel; |
||||
import com.logpm.aftersales.mapper.AftersalesPersonResponsibleMapper; |
||||
import com.logpm.aftersales.service.IAftersalesPersonResponsibleService; |
||||
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-09 |
||||
*/ |
||||
@Service |
||||
public class AftersalesPersonResponsibleServiceImpl extends BaseServiceImpl<AftersalesPersonResponsibleMapper, AftersalesPersonResponsibleEntity> implements IAftersalesPersonResponsibleService { |
||||
|
||||
@Override |
||||
public IPage<AftersalesPersonResponsibleVO> selectAftersalesPersonResponsiblePage(IPage<AftersalesPersonResponsibleVO> page, AftersalesPersonResponsibleVO aftersalesPersonResponsible) { |
||||
return page.setRecords(baseMapper.selectAftersalesPersonResponsiblePage(page, aftersalesPersonResponsible)); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public List<AftersalesPersonResponsibleExcel> exportAftersalesPersonResponsible(Wrapper<AftersalesPersonResponsibleEntity> queryWrapper) { |
||||
List<AftersalesPersonResponsibleExcel> aftersalesPersonResponsibleList = baseMapper.exportAftersalesPersonResponsible(queryWrapper); |
||||
//aftersalesPersonResponsibleList.forEach(aftersalesPersonResponsible -> {
|
||||
// aftersalesPersonResponsible.setTypeName(DictCache.getValue(DictEnum.YES_NO, AftersalesPersonResponsible.getType()));
|
||||
//});
|
||||
return aftersalesPersonResponsibleList; |
||||
} |
||||
|
||||
} |
@ -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.AftersaleSurveyRecordEntity; |
||||
import com.logpm.aftersales.vo.AftersaleSurveyRecordVO; |
||||
import java.util.Objects; |
||||
|
||||
/** |
||||
* 工单调查记录表 包装类,返回视图层所需的字段 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-09 |
||||
*/ |
||||
public class AftersaleSurveyRecordWrapper extends BaseEntityWrapper<AftersaleSurveyRecordEntity, AftersaleSurveyRecordVO> { |
||||
|
||||
public static AftersaleSurveyRecordWrapper build() { |
||||
return new AftersaleSurveyRecordWrapper(); |
||||
} |
||||
|
||||
@Override |
||||
public AftersaleSurveyRecordVO entityVO(AftersaleSurveyRecordEntity aftersaleSurveyRecord) { |
||||
AftersaleSurveyRecordVO aftersaleSurveyRecordVO = Objects.requireNonNull(BeanUtil.copy(aftersaleSurveyRecord, AftersaleSurveyRecordVO.class)); |
||||
|
||||
//User createUser = UserCache.getUser(aftersaleSurveyRecord.getCreateUser());
|
||||
//User updateUser = UserCache.getUser(aftersaleSurveyRecord.getUpdateUser());
|
||||
//aftersaleSurveyRecordVO.setCreateUserName(createUser.getName());
|
||||
//aftersaleSurveyRecordVO.setUpdateUserName(updateUser.getName());
|
||||
|
||||
return aftersaleSurveyRecordVO; |
||||
} |
||||
|
||||
|
||||
} |
@ -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.AftersalesPersonResponsibleEntity; |
||||
import com.logpm.aftersales.vo.AftersalesPersonResponsibleVO; |
||||
import java.util.Objects; |
||||
|
||||
/** |
||||
* 异常工单预计责任人 包装类,返回视图层所需的字段 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-12-09 |
||||
*/ |
||||
public class AftersalesPersonResponsibleWrapper extends BaseEntityWrapper<AftersalesPersonResponsibleEntity, AftersalesPersonResponsibleVO> { |
||||
|
||||
public static AftersalesPersonResponsibleWrapper build() { |
||||
return new AftersalesPersonResponsibleWrapper(); |
||||
} |
||||
|
||||
@Override |
||||
public AftersalesPersonResponsibleVO entityVO(AftersalesPersonResponsibleEntity aftersalesPersonResponsible) { |
||||
AftersalesPersonResponsibleVO aftersalesPersonResponsibleVO = Objects.requireNonNull(BeanUtil.copy(aftersalesPersonResponsible, AftersalesPersonResponsibleVO.class)); |
||||
|
||||
//User createUser = UserCache.getUser(aftersalesPersonResponsible.getCreateUser());
|
||||
//User updateUser = UserCache.getUser(aftersalesPersonResponsible.getUpdateUser());
|
||||
//aftersalesPersonResponsibleVO.setCreateUserName(createUser.getName());
|
||||
//aftersalesPersonResponsibleVO.setUpdateUserName(updateUser.getName());
|
||||
|
||||
return aftersalesPersonResponsibleVO; |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,12 @@
|
||||
package com.logpm.trunkline.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.logpm.trunkline.entity.TrunklineCarsLoadingLogEntity; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
|
||||
@Mapper |
||||
public interface TrunklineCarsLoadingLogMapper extends BaseMapper<TrunklineCarsLoadingLogEntity> { |
||||
|
||||
|
||||
|
||||
} |
@ -0,0 +1,6 @@
|
||||
<?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.trunkline.mapper.TrunklineBillladingLogMapper"> |
||||
|
||||
|
||||
</mapper> |
@ -1,12 +1,15 @@
|
||||
package com.logpm.trunkline.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.logpm.trunkline.entity.TrunklineCarsUnloadScanEntity; |
||||
import com.logpm.trunkline.entity.TrunklineCarsUnloadLogEntity; |
||||
import com.logpm.trunkline.vo.UnloadScanOrderVO; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
import org.apache.ibatis.annotations.Param; |
||||
|
||||
import java.util.List; |
||||
|
||||
@Mapper |
||||
public interface TrunklineCarsUnloadScanMapper extends BaseMapper<TrunklineCarsUnloadScanEntity> { |
||||
public interface TrunklineCarsUnloadLogMapper extends BaseMapper<TrunklineCarsUnloadLogEntity> { |
||||
Integer findNumByLoadId(@Param("loadId") Long loadId); |
||||
|
||||
Integer findAbnormalNumByLoadId(@Param("loadId") Long loadId); |
@ -0,0 +1,10 @@
|
||||
package com.logpm.trunkline.service; |
||||
|
||||
import com.logpm.trunkline.entity.TrunklineCarsLoadingLogEntity; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
|
||||
public interface ITrunklineCarsLoadingLogService extends BaseService<TrunklineCarsLoadingLogEntity> { |
||||
|
||||
void savaLoadingLog(Long warehouseId,String warehouseName,Long loadId,String loadCode,Long waybillId,String waybillNo,String orderCode,String scanCode,Integer num,Integer type,Integer isData,Integer isAbnormal,Long trayId,String trayCode,String trayName,Long fromWarehouseId,Long loadScanId,String remark); |
||||
|
||||
} |
@ -0,0 +1,24 @@
|
||||
package com.logpm.trunkline.service; |
||||
|
||||
import com.logpm.trunkline.entity.TrunklineCarsUnloadLogEntity; |
||||
import com.logpm.trunkline.vo.UnloadScanOrderVO; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
|
||||
import java.util.List; |
||||
|
||||
public interface ITrunklineCarsUnloadLogService extends BaseService<TrunklineCarsUnloadLogEntity> { |
||||
Integer findNumByLoadId(Long loadId); |
||||
|
||||
Integer findAbnormalNumByLoadId(Long loadId); |
||||
|
||||
Integer findNumByLoadIdAndNodeId(Long loadId, Long nodeId); |
||||
|
||||
Integer findAbnormalNumByLoadIdAndNodeId(Long loadId, Long nodeId); |
||||
|
||||
Integer findNumByLoadIdAndNodeIdAndOrderCodeAndWaybillNo(Long loadId, Long nodeId, String orderCode, String waybillNo); |
||||
|
||||
|
||||
|
||||
void savaUnloadLog(Long warehouseId,String warehouseName,Long loadId,String loadCode,Long waybillId,String waybillNo,String orderCode,String scanCode,Integer num,Integer type,Integer isData,Integer isAbnormal,Long trayId,String trayCode,String trayName,Long fromWarehouseId,Long loadScanId,String remark); |
||||
|
||||
} |
@ -1,16 +0,0 @@
|
||||
package com.logpm.trunkline.service; |
||||
|
||||
import com.logpm.trunkline.entity.TrunklineCarsUnloadScanEntity; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
|
||||
public interface ITrunklineCarsUnloadScanService extends BaseService<TrunklineCarsUnloadScanEntity> { |
||||
Integer findNumByLoadId(Long loadId); |
||||
|
||||
Integer findAbnormalNumByLoadId(Long loadId); |
||||
|
||||
Integer findNumByLoadIdAndNodeId(Long loadId, Long nodeId); |
||||
|
||||
Integer findAbnormalNumByLoadIdAndNodeId(Long loadId, Long nodeId); |
||||
|
||||
Integer findNumByLoadIdAndNodeIdAndOrderCodeAndWaybillNo(Long loadId, Long nodeId, String orderCode, String waybillNo); |
||||
} |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue