91 changed files with 3384 additions and 701 deletions
@ -0,0 +1,80 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.entity; |
||||
|
||||
import 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-06-21 |
||||
*/ |
||||
@Data |
||||
@TableName("logpm_basicdata_tripartite_mall") |
||||
@ApiModel(value = "BasicdataTripartiteMall对象", description = "客户三方商城") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class BasicdataTripartiteMallEntity 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 String client; |
||||
/** |
||||
* 三方商城 |
||||
*/ |
||||
@ApiModelProperty(value = "三方商城") |
||||
private String tripartiteMall; |
||||
/** |
||||
* 三方编码 |
||||
*/ |
||||
@ApiModelProperty(value = "三方编码") |
||||
private String tripartiteCoding; |
||||
|
||||
} |
@ -0,0 +1,49 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.feign; |
||||
|
||||
import org.springblade.core.mp.support.BladePage; |
||||
import com.logpm.basicdata.entity.BasicdataTripartiteMallEntity; |
||||
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-06-21 |
||||
*/ |
||||
@FeignClient( |
||||
value = "blade-basicdataTripartiteMall" |
||||
) |
||||
public interface IBasicdataTripartiteMallClient { |
||||
|
||||
String API_PREFIX = "/client"; |
||||
String TOP = API_PREFIX + "/1top"; |
||||
|
||||
/** |
||||
* 获取客户三方商城列表 |
||||
* |
||||
* @param current 页号 |
||||
* @param size 页数 |
||||
* @return BladePage |
||||
*/ |
||||
@GetMapping(TOP) |
||||
BladePage<BasicdataTripartiteMallEntity> top(@RequestParam("current") Integer current, @RequestParam("size") Integer size); |
||||
|
||||
} |
@ -0,0 +1,35 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.vo; |
||||
|
||||
import com.logpm.basicdata.entity.BasicdataTripartiteMallEntity; |
||||
import org.springblade.core.tool.node.INode; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 客户三方商城 视图实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-21 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class BasicdataTripartiteMallVO extends BasicdataTripartiteMallEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -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.distribution.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 TJJ |
||||
* @since 2023-06-16 |
||||
*/ |
||||
@Data |
||||
@TableName("logpm_distribution_delivery_info") |
||||
@ApiModel(value = "DistributionDeliveryInfo对象", description = "配送装车中间表") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class DistributionDeliveryInfoEntity extends TenantEntity { |
||||
|
||||
/** |
||||
* 客户表Id |
||||
*/ |
||||
@ApiModelProperty(value = "客户表Id") |
||||
private Long reservationId; |
||||
/** |
||||
* 配送表id |
||||
*/ |
||||
@ApiModelProperty(value = "配送表id") |
||||
private Long deliveryId; |
||||
/** |
||||
* 包条表id |
||||
*/ |
||||
@ApiModelProperty(value = "包条表id") |
||||
private Long packageId; |
||||
/** |
||||
* 订单表id |
||||
*/ |
||||
@ApiModelProperty(value = "订单表id") |
||||
private Long orderId; |
||||
/** |
||||
* 装车状态(1-未装车,2-已装车) |
||||
*/ |
||||
@ApiModelProperty(value = "装车状态(1-未装车,2-已装车)") |
||||
private String loadedState; |
||||
/** |
||||
* 装车数量 |
||||
*/ |
||||
@ApiModelProperty(value = "装车数量") |
||||
private Integer loadedNub; |
||||
/** |
||||
* 预留3 |
||||
*/ |
||||
@ApiModelProperty(value = "预留3") |
||||
private String reserve3; |
||||
/** |
||||
* 预留4 |
||||
*/ |
||||
@ApiModelProperty(value = "预留4") |
||||
private String reserve4; |
||||
/** |
||||
* 预留5 |
||||
*/ |
||||
@ApiModelProperty(value = "预留5") |
||||
private String reserve5; |
||||
|
||||
} |
@ -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.distribution.feign; |
||||
|
||||
import org.springblade.common.constant.ModuleNameConstant; |
||||
import org.springblade.core.mp.support.BladePage; |
||||
import com.logpm.distribution.entity.DistributionPackadeliEntity; |
||||
import org.springframework.cloud.openfeign.FeignClient; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RequestParam; |
||||
|
||||
/** |
||||
* 配送包条中间表 Feign接口类 |
||||
* |
||||
* @author lmy |
||||
* @since 2023-06-17 |
||||
*/ |
||||
@FeignClient( |
||||
value = ModuleNameConstant.APPLICATION_DISTRIBUTION_NAME |
||||
) |
||||
public interface IDistributionPackadeliClient { |
||||
|
||||
String API_PREFIX = "packadeli/client"; |
||||
String TOP = API_PREFIX + "/top"; |
||||
|
||||
/** |
||||
* 获取配送包条中间表列表 |
||||
* |
||||
* @param current 页号 |
||||
* @param size 页数 |
||||
* @return BladePage |
||||
*/ |
||||
@GetMapping(TOP) |
||||
BladePage<DistributionPackadeliEntity> top(@RequestParam("current") Integer current, @RequestParam("size") Integer size); |
||||
|
||||
} |
@ -0,0 +1,97 @@
|
||||
/* |
||||
* 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.distribution.vo; |
||||
|
||||
import com.logpm.distribution.entity.DistributionPackadeliEntity; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import org.springblade.core.tool.node.INode; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 配送包条中间表 视图实体类 |
||||
* |
||||
* @author lmy |
||||
* @since 2023-06-17 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class DistributionPackadeliVO extends DistributionPackadeliEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 仓库 |
||||
*/ |
||||
@ApiModelProperty(value = "仓库") |
||||
private String warehouse; |
||||
/** |
||||
* 状态 |
||||
*/ |
||||
@ApiModelProperty(value = "状态") |
||||
private Integer conditions; |
||||
/** |
||||
* 包条码 |
||||
*/ |
||||
@ApiModelProperty(value = "包条码") |
||||
private String packetBarCode; |
||||
/** |
||||
* 货位信息 |
||||
*/ |
||||
@ApiModelProperty(value = "货位信息") |
||||
private String goodsAllocation; |
||||
/** |
||||
* 所在托盘 |
||||
*/ |
||||
@ApiModelProperty(value = "所在托盘") |
||||
private String pallet; |
||||
/** |
||||
* 一级品 |
||||
*/ |
||||
@ApiModelProperty(value = "一级品") |
||||
private String firsts; |
||||
/** |
||||
* 二级品 |
||||
*/ |
||||
@ApiModelProperty(value = "二级品") |
||||
private String second; |
||||
/** |
||||
* 三级品 |
||||
*/ |
||||
@ApiModelProperty(value = "三级品") |
||||
private String thirdProduct; |
||||
/** |
||||
* 物料 |
||||
*/ |
||||
@ApiModelProperty(value = "物料") |
||||
private String material; |
||||
/** |
||||
* 数量 |
||||
*/ |
||||
@ApiModelProperty(value = "数量") |
||||
private Integer quantity; |
||||
/** |
||||
* 车次号 |
||||
*/ |
||||
@ApiModelProperty(value = "车次号") |
||||
private String trainNumber; |
||||
/** |
||||
* 在库订单ID |
||||
*/ |
||||
@ApiModelProperty(value = "在库订单ID") |
||||
private String stockArticleId; |
||||
|
||||
} |
@ -0,0 +1,39 @@
|
||||
package com.logpm.distribution.vo; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* 车次统计 |
||||
* |
||||
* @author lmy |
||||
* @since 2023-06-19 |
||||
*/ |
||||
@Data |
||||
public class DistributionSignforsnmbVO { |
||||
|
||||
/** |
||||
* 客户总数 |
||||
*/ |
||||
@ApiModelProperty(value = "客户总数") |
||||
private Integer customNub; |
||||
|
||||
/** |
||||
* 订单总数 |
||||
*/ |
||||
@ApiModelProperty(value = "订单总数") |
||||
private Integer ordersNub; |
||||
|
||||
/** |
||||
* 已签收总数 |
||||
*/ |
||||
@ApiModelProperty(value = "已签收总数") |
||||
private Integer signedNub; |
||||
/** |
||||
* 未签收总数 |
||||
*/ |
||||
@ApiModelProperty(value = "未签收总数") |
||||
private Integer unsignedNub; |
||||
|
||||
|
||||
} |
@ -0,0 +1,47 @@
|
||||
package com.logpm.distribution.vo; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
|
||||
/** |
||||
* 车次统计 |
||||
* |
||||
* @author lmy |
||||
* @since 2023-06-19 |
||||
*/ |
||||
@Data |
||||
public class DistributionstatisticsnmbVO { |
||||
|
||||
/** |
||||
* 配送总车数 |
||||
*/ |
||||
@ApiModelProperty(value = "配送总车数") |
||||
private Integer vehiclesNub; |
||||
|
||||
/** |
||||
* 配送总件数 |
||||
*/ |
||||
@ApiModelProperty(value = "配送总件数") |
||||
private Integer deliveriesTotal; |
||||
|
||||
/** |
||||
* 商配总车次 |
||||
*/ |
||||
@ApiModelProperty(value = "商配总车次") |
||||
private Integer commercialNub; |
||||
/** |
||||
* 商配总件数 |
||||
*/ |
||||
@ApiModelProperty(value = "商配总件数") |
||||
private Integer commercialTotal; |
||||
/** |
||||
* 市配总车数 |
||||
*/ |
||||
@ApiModelProperty(value = "市配总车数") |
||||
private Integer marketNub; |
||||
/** |
||||
* 市配总件数 |
||||
*/ |
||||
@ApiModelProperty(value = "市配总件数") |
||||
private Integer marketTotal; |
||||
} |
@ -0,0 +1,150 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.controller; |
||||
|
||||
import io.swagger.annotations.Api; |
||||
import io.swagger.annotations.ApiOperation; |
||||
import io.swagger.annotations.ApiParam; |
||||
import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport; |
||||
import lombok.AllArgsConstructor; |
||||
import javax.validation.Valid; |
||||
|
||||
import org.springblade.core.secure.BladeUser; |
||||
import org.springblade.core.mp.support.Condition; |
||||
import org.springblade.core.mp.support.Query; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springblade.core.tool.utils.Func; |
||||
import org.springframework.web.bind.annotation.*; |
||||
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import com.logpm.basicdata.entity.BasicdataTripartiteMallEntity; |
||||
import com.logpm.basicdata.vo.BasicdataTripartiteMallVO; |
||||
import com.logpm.basicdata.excel.BasicdataTripartiteMallExcel; |
||||
import com.logpm.basicdata.service.IBasicdataTripartiteMallService; |
||||
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-06-21 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/basicdataTripartiteMall") |
||||
@Api(value = "客户三方商城", tags = "客户三方商城接口") |
||||
public class BasicdataTripartiteMallController extends BladeController { |
||||
|
||||
private final IBasicdataTripartiteMallService basicdataTripartiteMallService; |
||||
|
||||
/** |
||||
* 客户三方商城 详情 |
||||
*/ |
||||
@GetMapping("/detail") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "详情", notes = "传入basicdataTripartiteMall") |
||||
public R<BasicdataTripartiteMallEntity> detail(BasicdataTripartiteMallEntity basicdataTripartiteMall) { |
||||
BasicdataTripartiteMallEntity detail = basicdataTripartiteMallService.getOne(Condition.getQueryWrapper(basicdataTripartiteMall)); |
||||
return R.data(detail); |
||||
} |
||||
/** |
||||
* 客户三方商城 分页 |
||||
*/ |
||||
@GetMapping("/list") |
||||
@ApiOperationSupport(order = 2) |
||||
@ApiOperation(value = "分页", notes = "传入basicdataTripartiteMall") |
||||
public R<IPage<BasicdataTripartiteMallEntity>> list(@ApiIgnore @RequestParam Map<String, Object> basicdataTripartiteMall, Query query) { |
||||
IPage<BasicdataTripartiteMallEntity> pages = basicdataTripartiteMallService.page(Condition.getPage(query), Condition.getQueryWrapper(basicdataTripartiteMall, BasicdataTripartiteMallEntity.class)); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 客户三方商城 自定义分页 |
||||
*/ |
||||
@GetMapping("/page") |
||||
@ApiOperationSupport(order = 3) |
||||
@ApiOperation(value = "分页", notes = "传入basicdataTripartiteMall") |
||||
public R<IPage<BasicdataTripartiteMallVO>> page(BasicdataTripartiteMallVO basicdataTripartiteMall, Query query) { |
||||
IPage<BasicdataTripartiteMallVO> pages = basicdataTripartiteMallService.selectBasicdataTripartiteMallPage(Condition.getPage(query), basicdataTripartiteMall); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 客户三方商城 新增 |
||||
*/ |
||||
@PostMapping("/save") |
||||
@ApiOperationSupport(order = 4) |
||||
@ApiOperation(value = "新增", notes = "传入basicdataTripartiteMall") |
||||
public R save(@Valid @RequestBody BasicdataTripartiteMallEntity basicdataTripartiteMall) { |
||||
return R.status(basicdataTripartiteMallService.save(basicdataTripartiteMall)); |
||||
} |
||||
|
||||
/** |
||||
* 客户三方商城 修改 |
||||
*/ |
||||
@PostMapping("/update") |
||||
@ApiOperationSupport(order = 5) |
||||
@ApiOperation(value = "修改", notes = "传入basicdataTripartiteMall") |
||||
public R update(@Valid @RequestBody BasicdataTripartiteMallEntity basicdataTripartiteMall) { |
||||
return R.status(basicdataTripartiteMallService.updateById(basicdataTripartiteMall)); |
||||
} |
||||
|
||||
/** |
||||
* 客户三方商城 新增或修改 |
||||
*/ |
||||
@PostMapping("/submit") |
||||
@ApiOperationSupport(order = 6) |
||||
@ApiOperation(value = "新增或修改", notes = "传入basicdataTripartiteMall") |
||||
public R submit(@Valid @RequestBody BasicdataTripartiteMallEntity basicdataTripartiteMall) { |
||||
return R.status(basicdataTripartiteMallService.saveOrUpdate(basicdataTripartiteMall)); |
||||
} |
||||
|
||||
/** |
||||
* 客户三方商城 删除 |
||||
*/ |
||||
@PostMapping("/remove") |
||||
@ApiOperationSupport(order = 7) |
||||
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||
return R.status(basicdataTripartiteMallService.deleteLogic(Func.toLongList(ids))); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
*/ |
||||
@GetMapping("/export-basicdataTripartiteMall") |
||||
@ApiOperationSupport(order = 9) |
||||
@ApiOperation(value = "导出数据", notes = "传入basicdataTripartiteMall") |
||||
public void exportBasicdataTripartiteMall(@ApiIgnore @RequestParam Map<String, Object> basicdataTripartiteMall, BladeUser bladeUser, HttpServletResponse response) { |
||||
QueryWrapper<BasicdataTripartiteMallEntity> queryWrapper = Condition.getQueryWrapper(basicdataTripartiteMall, BasicdataTripartiteMallEntity.class); |
||||
//if (!AuthUtil.isAdministrator()) {
|
||||
// queryWrapper.lambda().eq(BasicdataTripartiteMall::getTenantId, bladeUser.getTenantId());
|
||||
//}
|
||||
queryWrapper.lambda().eq(BasicdataTripartiteMallEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED); |
||||
List<BasicdataTripartiteMallExcel> list = basicdataTripartiteMallService.exportBasicdataTripartiteMall(queryWrapper); |
||||
ExcelUtil.export(response, "客户三方商城数据" + DateUtil.time(), "客户三方商城数据表", list, BasicdataTripartiteMallExcel.class); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,34 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.dto; |
||||
|
||||
import com.logpm.basicdata.entity.BasicdataTripartiteMallEntity; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 客户三方商城 数据传输对象实体类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-21 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class BasicdataTripartiteMallDTO extends BasicdataTripartiteMallEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -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.basicdata.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-06-21 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class BasicdataTripartiteMallExcel 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 client; |
||||
/** |
||||
* 三方商城 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("三方商城") |
||||
private String tripartiteMall; |
||||
/** |
||||
* 三方编码 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("三方编码") |
||||
private String tripartiteCoding; |
||||
|
||||
} |
@ -0,0 +1,53 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.feign; |
||||
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.mp.support.BladePage; |
||||
import org.springblade.core.mp.support.Condition; |
||||
import org.springblade.core.mp.support.Query; |
||||
import com.logpm.basicdata.entity.BasicdataTripartiteMallEntity; |
||||
import com.logpm.basicdata.service.IBasicdataTripartiteMallService; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
import springfox.documentation.annotations.ApiIgnore; |
||||
|
||||
/** |
||||
* 客户三方商城 Feign实现类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-21 |
||||
*/ |
||||
@ApiIgnore() |
||||
@RestController |
||||
@AllArgsConstructor |
||||
public class BasicdataTripartiteMallClient implements IBasicdataTripartiteMallClient { |
||||
|
||||
private final IBasicdataTripartiteMallService basicdataTripartiteMallService; |
||||
|
||||
@Override |
||||
@GetMapping(TOP) |
||||
public BladePage<BasicdataTripartiteMallEntity> top(Integer current, Integer size) { |
||||
Query query = new Query(); |
||||
query.setCurrent(current); |
||||
query.setSize(size); |
||||
IPage<BasicdataTripartiteMallEntity> page = basicdataTripartiteMallService.page(Condition.getPage(query)); |
||||
return BladePage.of(page); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,54 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.mapper; |
||||
|
||||
import com.logpm.basicdata.entity.BasicdataTripartiteMallEntity; |
||||
import com.logpm.basicdata.vo.BasicdataTripartiteMallVO; |
||||
import com.logpm.basicdata.excel.BasicdataTripartiteMallExcel; |
||||
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-06-21 |
||||
*/ |
||||
public interface BasicdataTripartiteMallMapper extends BaseMapper<BasicdataTripartiteMallEntity> { |
||||
|
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param basicdataTripartiteMall |
||||
* @return |
||||
*/ |
||||
List<BasicdataTripartiteMallVO> selectBasicdataTripartiteMallPage(IPage page, BasicdataTripartiteMallVO basicdataTripartiteMall); |
||||
|
||||
|
||||
/** |
||||
* 获取导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<BasicdataTripartiteMallExcel> exportBasicdataTripartiteMall(@Param("ew") Wrapper<BasicdataTripartiteMallEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.logpm.basicdata.mapper.BasicdataTripartiteMallMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="basicdataTripartiteMallResultMap" type="com.logpm.basicdata.entity.BasicdataTripartiteMallEntity"> |
||||
<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="client" property="client"/> |
||||
<result column="tripartite_mall" property="tripartiteMall"/> |
||||
<result column="tripartite_coding" property="tripartiteCoding"/> |
||||
</resultMap> |
||||
|
||||
|
||||
<select id="selectBasicdataTripartiteMallPage" resultMap="basicdataTripartiteMallResultMap"> |
||||
select * from logpm_basicdata_tripartite_mall where is_deleted = 0 |
||||
</select> |
||||
|
||||
|
||||
<select id="exportBasicdataTripartiteMall" resultType="com.logpm.basicdata.excel.BasicdataTripartiteMallExcel"> |
||||
SELECT * FROM logpm_basicdata_tripartite_mall ${ew.customSqlSegment} |
||||
</select> |
||||
|
||||
</mapper> |
@ -0,0 +1,52 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.service; |
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.logpm.basicdata.entity.BasicdataTripartiteMallEntity; |
||||
import com.logpm.basicdata.vo.BasicdataTripartiteMallVO; |
||||
import com.logpm.basicdata.excel.BasicdataTripartiteMallExcel; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 客户三方商城 服务类 |
||||
* |
||||
* @author cyz |
||||
* @since 2023-06-21 |
||||
*/ |
||||
public interface IBasicdataTripartiteMallService extends BaseService<BasicdataTripartiteMallEntity> { |
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param basicdataTripartiteMall |
||||
* @return |
||||
*/ |
||||
IPage<BasicdataTripartiteMallVO> selectBasicdataTripartiteMallPage(IPage<BasicdataTripartiteMallVO> page, BasicdataTripartiteMallVO basicdataTripartiteMall); |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<BasicdataTripartiteMallExcel> exportBasicdataTripartiteMall(Wrapper<BasicdataTripartiteMallEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,54 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.basicdata.service.impl; |
||||
|
||||
import com.logpm.basicdata.entity.BasicdataTripartiteMallEntity; |
||||
import com.logpm.basicdata.vo.BasicdataTripartiteMallVO; |
||||
import com.logpm.basicdata.excel.BasicdataTripartiteMallExcel; |
||||
import com.logpm.basicdata.mapper.BasicdataTripartiteMallMapper; |
||||
import com.logpm.basicdata.service.IBasicdataTripartiteMallService; |
||||
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-06-21 |
||||
*/ |
||||
@Service |
||||
public class BasicdataTripartiteMallServiceImpl extends BaseServiceImpl<BasicdataTripartiteMallMapper, BasicdataTripartiteMallEntity> implements IBasicdataTripartiteMallService { |
||||
|
||||
@Override |
||||
public IPage<BasicdataTripartiteMallVO> selectBasicdataTripartiteMallPage(IPage<BasicdataTripartiteMallVO> page, BasicdataTripartiteMallVO basicdataTripartiteMall) { |
||||
return page.setRecords(baseMapper.selectBasicdataTripartiteMallPage(page, basicdataTripartiteMall)); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public List<BasicdataTripartiteMallExcel> exportBasicdataTripartiteMall(Wrapper<BasicdataTripartiteMallEntity> queryWrapper) { |
||||
List<BasicdataTripartiteMallExcel> basicdataTripartiteMallList = baseMapper.exportBasicdataTripartiteMall(queryWrapper); |
||||
//basicdataTripartiteMallList.forEach(basicdataTripartiteMall -> {
|
||||
// basicdataTripartiteMall.setTypeName(DictCache.getValue(DictEnum.YES_NO, BasicdataTripartiteMall.getType()));
|
||||
//});
|
||||
return basicdataTripartiteMallList; |
||||
} |
||||
|
||||
} |
@ -1,163 +0,0 @@
|
||||
/* |
||||
* 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.distribution.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.distribution.entity.DistributionDeliveryEntity; |
||||
import com.logpm.distribution.vo.DistributionDeliveryVO; |
||||
import com.logpm.distribution.excel.DistributionDeliveryExcel; |
||||
import com.logpm.distribution.service.IDistributionDeliveryService; |
||||
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 TJJ |
||||
* @since 2023-06-15 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/delivery") |
||||
@Api(value = "配送单", tags = "配送单接口") |
||||
public class DistributionDeliveryController extends BladeController { |
||||
|
||||
private final IDistributionDeliveryService distributionDeliveryService; |
||||
|
||||
/** |
||||
* 配送单 详情 |
||||
*/ |
||||
@GetMapping("/detail") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "详情", notes = "传入distributionDelivery") |
||||
public R<DistributionDeliveryEntity> detail(DistributionDeliveryEntity distributionDelivery) { |
||||
DistributionDeliveryEntity detail = distributionDeliveryService.getOne(Condition.getQueryWrapper(distributionDelivery)); |
||||
return R.data(detail); |
||||
} |
||||
/** |
||||
* 配送单 分页 |
||||
*/ |
||||
@GetMapping("/list") |
||||
@ApiOperationSupport(order = 2) |
||||
@ApiOperation(value = "分页", notes = "传入distributionDelivery") |
||||
public R<IPage<DistributionDeliveryEntity>> list(@ApiIgnore @RequestParam Map<String, Object> distributionDelivery, Query query) { |
||||
IPage<DistributionDeliveryEntity> pages = distributionDeliveryService.page(Condition.getPage(query), Condition.getQueryWrapper(distributionDelivery, DistributionDeliveryEntity.class)); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 配送单 自定义分页 |
||||
*/ |
||||
@GetMapping("/page") |
||||
@ApiOperationSupport(order = 3) |
||||
@ApiOperation(value = "分页", notes = "传入distributionDelivery") |
||||
public R<IPage<DistributionDeliveryVO>> page(DistributionDeliveryVO distributionDelivery, Query query) { |
||||
IPage<DistributionDeliveryVO> pages = distributionDeliveryService.selectDistributionDeliveryPage(Condition.getPage(query), distributionDelivery); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 配送单 新增 |
||||
*/ |
||||
@PostMapping("/save") |
||||
@ApiOperationSupport(order = 4) |
||||
@ApiOperation(value = "新增", notes = "传入distributionDelivery") |
||||
public R save(@Valid @RequestBody DistributionDeliveryEntity distributionDelivery) { |
||||
return R.status(distributionDeliveryService.save(distributionDelivery)); |
||||
} |
||||
|
||||
/** |
||||
* 配送单 修改 |
||||
*/ |
||||
@PostMapping("/update") |
||||
@ApiOperationSupport(order = 5) |
||||
@ApiOperation(value = "修改", notes = "传入distributionDelivery") |
||||
public R update(@Valid @RequestBody DistributionDeliveryEntity distributionDelivery) { |
||||
return R.status(distributionDeliveryService.updateById(distributionDelivery)); |
||||
} |
||||
|
||||
/** |
||||
* 配送单 新增或修改 |
||||
*/ |
||||
@PostMapping("/submit") |
||||
@ApiOperationSupport(order = 6) |
||||
@ApiOperation(value = "新增或修改", notes = "传入distributionDelivery") |
||||
public R submit(@Valid @RequestBody DistributionDeliveryEntity distributionDelivery) { |
||||
return R.status(distributionDeliveryService.saveOrUpdate(distributionDelivery)); |
||||
} |
||||
|
||||
/** |
||||
* 配送单 删除 |
||||
*/ |
||||
@PostMapping("/remove") |
||||
@ApiOperationSupport(order = 7) |
||||
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||
return R.status(distributionDeliveryService.deleteLogic(Func.toLongList(ids))); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
*/ |
||||
@GetMapping("/export-distributionDelivery") |
||||
@ApiOperationSupport(order = 9) |
||||
@ApiOperation(value = "导出数据", notes = "传入distributionDelivery") |
||||
public void exportDistributionDelivery(@ApiIgnore @RequestParam Map<String, Object> distributionDelivery, BladeUser bladeUser, HttpServletResponse response) { |
||||
QueryWrapper<DistributionDeliveryEntity> queryWrapper = Condition.getQueryWrapper(distributionDelivery, DistributionDeliveryEntity.class); |
||||
//if (!AuthUtil.isAdministrator()) {
|
||||
// queryWrapper.lambda().eq(DistributionDelivery::getTenantId, bladeUser.getTenantId());
|
||||
//}
|
||||
queryWrapper.lambda().eq(DistributionDeliveryEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED); |
||||
List<DistributionDeliveryExcel> list = distributionDeliveryService.exportDistributionDelivery(queryWrapper); |
||||
ExcelUtil.export(response, "配送单数据" + DateUtil.time(), "配送单数据表", list, DistributionDeliveryExcel.class); |
||||
} |
||||
|
||||
/** |
||||
* 配送单 添加增值服务 |
||||
*/ |
||||
@PostMapping("/addIncrement") |
||||
@ApiOperationSupport(order = 7) |
||||
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||
public R addIncrement(@ApiParam(value = "主键集合", required = true) @RequestBody Map<String,Object> addvalueInfo) { |
||||
R<?> result = distributionDeliveryService.addIncrement(addvalueInfo); |
||||
return result; |
||||
} |
||||
|
||||
|
||||
|
||||
} |
@ -0,0 +1,150 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.distribution.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.distribution.entity.DistributionDeliveryInfoEntity; |
||||
import com.logpm.distribution.vo.DistributionDeliveryInfoVO; |
||||
import com.logpm.distribution.excel.DistributionDeliveryInfoExcel; |
||||
import com.logpm.distribution.service.IDistributionDeliveryInfoService; |
||||
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 TJJ |
||||
* @since 2023-06-16 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("/deliveryInfo") |
||||
@Api(value = "配送装车中间表", tags = "配送装车中间表接口") |
||||
public class DistributionDeliveryInfoController extends BladeController { |
||||
|
||||
private final IDistributionDeliveryInfoService distributionDeliveryInfoService; |
||||
|
||||
/** |
||||
* 配送装车中间表 详情 |
||||
*/ |
||||
@GetMapping("/detail") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "详情", notes = "传入distributionDeliveryInfo") |
||||
public R<DistributionDeliveryInfoEntity> detail(DistributionDeliveryInfoEntity distributionDeliveryInfo) { |
||||
DistributionDeliveryInfoEntity detail = distributionDeliveryInfoService.getOne(Condition.getQueryWrapper(distributionDeliveryInfo)); |
||||
return R.data(detail); |
||||
} |
||||
/** |
||||
* 配送装车中间表 分页 |
||||
*/ |
||||
@GetMapping("/list") |
||||
@ApiOperationSupport(order = 2) |
||||
@ApiOperation(value = "分页", notes = "传入distributionDeliveryInfo") |
||||
public R<IPage<DistributionDeliveryInfoEntity>> list(@ApiIgnore @RequestParam Map<String, Object> distributionDeliveryInfo, Query query) { |
||||
IPage<DistributionDeliveryInfoEntity> pages = distributionDeliveryInfoService.page(Condition.getPage(query), Condition.getQueryWrapper(distributionDeliveryInfo, DistributionDeliveryInfoEntity.class)); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 配送装车中间表 自定义分页 |
||||
*/ |
||||
@GetMapping("/page") |
||||
@ApiOperationSupport(order = 3) |
||||
@ApiOperation(value = "分页", notes = "传入distributionDeliveryInfo") |
||||
public R<IPage<DistributionDeliveryInfoVO>> page(DistributionDeliveryInfoVO distributionDeliveryInfo, Query query) { |
||||
IPage<DistributionDeliveryInfoVO> pages = distributionDeliveryInfoService.selectDistributionDeliveryInfoPage(Condition.getPage(query), distributionDeliveryInfo); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 配送装车中间表 新增 |
||||
*/ |
||||
@PostMapping("/save") |
||||
@ApiOperationSupport(order = 4) |
||||
@ApiOperation(value = "新增", notes = "传入distributionDeliveryInfo") |
||||
public R save(@Valid @RequestBody DistributionDeliveryInfoEntity distributionDeliveryInfo) { |
||||
return R.status(distributionDeliveryInfoService.save(distributionDeliveryInfo)); |
||||
} |
||||
|
||||
/** |
||||
* 配送装车中间表 修改 |
||||
*/ |
||||
@PostMapping("/update") |
||||
@ApiOperationSupport(order = 5) |
||||
@ApiOperation(value = "修改", notes = "传入distributionDeliveryInfo") |
||||
public R update(@Valid @RequestBody DistributionDeliveryInfoEntity distributionDeliveryInfo) { |
||||
return R.status(distributionDeliveryInfoService.updateById(distributionDeliveryInfo)); |
||||
} |
||||
|
||||
/** |
||||
* 配送装车中间表 新增或修改 |
||||
*/ |
||||
@PostMapping("/submit") |
||||
@ApiOperationSupport(order = 6) |
||||
@ApiOperation(value = "新增或修改", notes = "传入distributionDeliveryInfo") |
||||
public R submit(@Valid @RequestBody DistributionDeliveryInfoEntity distributionDeliveryInfo) { |
||||
return R.status(distributionDeliveryInfoService.saveOrUpdate(distributionDeliveryInfo)); |
||||
} |
||||
|
||||
/** |
||||
* 配送装车中间表 删除 |
||||
*/ |
||||
@PostMapping("/remove") |
||||
@ApiOperationSupport(order = 7) |
||||
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||
return R.status(distributionDeliveryInfoService.deleteLogic(Func.toLongList(ids))); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
*/ |
||||
@GetMapping("/export-distributionDeliveryInfo") |
||||
@ApiOperationSupport(order = 9) |
||||
@ApiOperation(value = "导出数据", notes = "传入distributionDeliveryInfo") |
||||
public void exportDistributionDeliveryInfo(@ApiIgnore @RequestParam Map<String, Object> distributionDeliveryInfo, BladeUser bladeUser, HttpServletResponse response) { |
||||
QueryWrapper<DistributionDeliveryInfoEntity> queryWrapper = Condition.getQueryWrapper(distributionDeliveryInfo, DistributionDeliveryInfoEntity.class); |
||||
//if (!AuthUtil.isAdministrator()) {
|
||||
// queryWrapper.lambda().eq(DistributionDeliveryInfo::getTenantId, bladeUser.getTenantId());
|
||||
//}
|
||||
queryWrapper.lambda().eq(DistributionDeliveryInfoEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED); |
||||
List<DistributionDeliveryInfoExcel> list = distributionDeliveryInfoService.exportDistributionDeliveryInfo(queryWrapper); |
||||
ExcelUtil.export(response, "配送装车中间表数据" + DateUtil.time(), "配送装车中间表数据表", list, DistributionDeliveryInfoExcel.class); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,150 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.distribution.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.distribution.entity.DistributionPackadeliEntity; |
||||
import com.logpm.distribution.vo.DistributionPackadeliVO; |
||||
import com.logpm.distribution.excel.DistributionPackadeliExcel; |
||||
import com.logpm.distribution.service.IDistributionPackadeliService; |
||||
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 lmy |
||||
* @since 2023-06-17 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("packadeli/distributionPackadeli") |
||||
@Api(value = "配送包条中间表", tags = "配送包条中间表接口") |
||||
public class DistributionPackadeliController extends BladeController { |
||||
|
||||
private final IDistributionPackadeliService distributionPackadeliService; |
||||
|
||||
/** |
||||
* 配送包条中间表 详情 |
||||
*/ |
||||
@GetMapping("/detail") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "详情", notes = "传入distributionPackadeli") |
||||
public R<DistributionPackadeliEntity> detail(DistributionPackadeliEntity distributionPackadeli) { |
||||
DistributionPackadeliEntity detail = distributionPackadeliService.getOne(Condition.getQueryWrapper(distributionPackadeli)); |
||||
return R.data(detail); |
||||
} |
||||
/** |
||||
* 配送包条中间表 分页 |
||||
*/ |
||||
@GetMapping("/list") |
||||
@ApiOperationSupport(order = 2) |
||||
@ApiOperation(value = "分页", notes = "传入distributionPackadeli") |
||||
public R<IPage<DistributionPackadeliEntity>> list(@ApiIgnore @RequestParam Map<String, Object> distributionPackadeli, Query query) { |
||||
IPage<DistributionPackadeliEntity> pages = distributionPackadeliService.page(Condition.getPage(query), Condition.getQueryWrapper(distributionPackadeli, DistributionPackadeliEntity.class)); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 配送包条中间表 自定义分页 |
||||
*/ |
||||
@GetMapping("/page") |
||||
@ApiOperationSupport(order = 3) |
||||
@ApiOperation(value = "分页", notes = "传入distributionPackadeli") |
||||
public R<IPage<DistributionPackadeliVO>> page(DistributionPackadeliVO distributionPackadeli, Query query) { |
||||
IPage<DistributionPackadeliVO> pages = distributionPackadeliService.selectDistributionPackadeliPage(Condition.getPage(query), distributionPackadeli); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 配送包条中间表 新增 |
||||
*/ |
||||
@PostMapping("/save") |
||||
@ApiOperationSupport(order = 4) |
||||
@ApiOperation(value = "新增", notes = "传入distributionPackadeli") |
||||
public R save(@Valid @RequestBody DistributionPackadeliEntity distributionPackadeli) { |
||||
return R.status(distributionPackadeliService.save(distributionPackadeli)); |
||||
} |
||||
|
||||
/** |
||||
* 配送包条中间表 修改 |
||||
*/ |
||||
@PostMapping("/update") |
||||
@ApiOperationSupport(order = 5) |
||||
@ApiOperation(value = "修改", notes = "传入distributionPackadeli") |
||||
public R update(@Valid @RequestBody DistributionPackadeliEntity distributionPackadeli) { |
||||
return R.status(distributionPackadeliService.updateById(distributionPackadeli)); |
||||
} |
||||
|
||||
/** |
||||
* 配送包条中间表 新增或修改 |
||||
*/ |
||||
@PostMapping("/submit") |
||||
@ApiOperationSupport(order = 6) |
||||
@ApiOperation(value = "新增或修改", notes = "传入distributionPackadeli") |
||||
public R submit(@Valid @RequestBody DistributionPackadeliEntity distributionPackadeli) { |
||||
return R.status(distributionPackadeliService.saveOrUpdate(distributionPackadeli)); |
||||
} |
||||
|
||||
/** |
||||
* 配送包条中间表 删除 |
||||
*/ |
||||
@PostMapping("/remove") |
||||
@ApiOperationSupport(order = 7) |
||||
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||
return R.status(distributionPackadeliService.deleteLogic(Func.toLongList(ids))); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
*/ |
||||
@GetMapping("/export-distributionPackadeli") |
||||
@ApiOperationSupport(order = 9) |
||||
@ApiOperation(value = "导出数据", notes = "传入distributionPackadeli") |
||||
public void exportDistributionPackadeli(@ApiIgnore @RequestParam Map<String, Object> distributionPackadeli, BladeUser bladeUser, HttpServletResponse response) { |
||||
QueryWrapper<DistributionPackadeliEntity> queryWrapper = Condition.getQueryWrapper(distributionPackadeli, DistributionPackadeliEntity.class); |
||||
//if (!AuthUtil.isAdministrator()) {
|
||||
// queryWrapper.lambda().eq(DistributionPackadeli::getTenantId, bladeUser.getTenantId());
|
||||
//}
|
||||
queryWrapper.lambda().eq(DistributionPackadeliEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED); |
||||
List<DistributionPackadeliExcel> list = distributionPackadeliService.exportDistributionPackadeli(queryWrapper); |
||||
ExcelUtil.export(response, "配送包条中间表数据" + DateUtil.time(), "配送包条中间表数据表", list, DistributionPackadeliExcel.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.distribution.dto; |
||||
|
||||
import com.logpm.distribution.entity.DistributionPackadeliEntity; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 配送包条中间表 数据传输对象实体类 |
||||
* |
||||
* @author lmy |
||||
* @since 2023-06-17 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class DistributionPackadeliDTO extends DistributionPackadeliEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,99 @@
|
||||
/* |
||||
* 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.distribution.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 TJJ |
||||
* @since 2023-06-16 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class DistributionDeliveryInfoExcel implements Serializable { |
||||
|
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 租户号 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("租户号") |
||||
private String tenantId; |
||||
/** |
||||
* 是否已删除 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("是否已删除") |
||||
private Integer isDeleted; |
||||
/** |
||||
* 预约编号 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("预约编号") |
||||
private String reservationId; |
||||
/** |
||||
* 配送单编号 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("配送单编号") |
||||
private String deliveryId; |
||||
/** |
||||
* 预留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; |
||||
|
||||
} |
@ -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.distribution.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.distribution.entity.DistributionDeliveryInfoEntity; |
||||
import com.logpm.distribution.service.IDistributionDeliveryInfoService; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
import springfox.documentation.annotations.ApiIgnore; |
||||
|
||||
/** |
||||
* 配送装车中间表 Feign实现类 |
||||
* |
||||
* @author TJJ |
||||
* @since 2023-06-16 |
||||
*/ |
||||
@ApiIgnore() |
||||
@RestController |
||||
@AllArgsConstructor |
||||
public class DistributionDeliveryInfoClient implements IDistributionDeliveryInfoClient { |
||||
|
||||
private final IDistributionDeliveryInfoService distributionDeliveryInfoService; |
||||
|
||||
@GetMapping(TOP) |
||||
@Override |
||||
public BladePage<DistributionDeliveryInfoEntity> deliveryInfoTop(Integer current, Integer size) { |
||||
Query query = new Query(); |
||||
query.setCurrent(current); |
||||
query.setSize(size); |
||||
IPage<DistributionDeliveryInfoEntity> page = distributionDeliveryInfoService.page(Condition.getPage(query)); |
||||
return BladePage.of(page); |
||||
} |
||||
} |
@ -0,0 +1,35 @@
|
||||
<?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.distribution.mapper.DistributionDeliveryInfoMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="distributionDeliveryInfoResultMap" type="com.logpm.distribution.entity.DistributionDeliveryInfoEntity"> |
||||
<result column="id" property="id"/> |
||||
<result column="tenant_id" property="tenantId"/> |
||||
<result column="create_user" property="createUser"/> |
||||
<result column="create_time" property="createTime"/> |
||||
<result column="update_user" property="updateUser"/> |
||||
<result column="update_time" property="updateTime"/> |
||||
<result column="status" property="status"/> |
||||
<result column="is_deleted" property="isDeleted"/> |
||||
<result column="create_dept" property="createDept"/> |
||||
<result column="reservation_id" property="reservationId"/> |
||||
<result column="delivery_id" property="deliveryId"/> |
||||
<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"/> |
||||
</resultMap> |
||||
|
||||
|
||||
<select id="selectDistributionDeliveryInfoPage" resultMap="distributionDeliveryInfoResultMap"> |
||||
select * from logpm_distribution_delivery_info where is_deleted = 0 |
||||
</select> |
||||
|
||||
|
||||
<select id="exportDistributionDeliveryInfo" resultType="com.logpm.distribution.excel.DistributionDeliveryInfoExcel"> |
||||
SELECT * FROM logpm_distribution_delivery_info ${ew.customSqlSegment} |
||||
</select> |
||||
|
||||
</mapper> |
@ -1,46 +0,0 @@
|
||||
<?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.distribution.mapper.DistributionDeliveryMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="distributionDeliveryResultMap" type="com.logpm.distribution.entity.DistributionDeliveryEntity"> |
||||
<result column="id" property="id"/> |
||||
<result column="tenant_id" property="tenantId"/> |
||||
<result column="create_user" property="createUser"/> |
||||
<result column="create_time" property="createTime"/> |
||||
<result column="update_user" property="updateUser"/> |
||||
<result column="update_time" property="updateTime"/> |
||||
<result column="status" property="status"/> |
||||
<result column="is_deleted" property="isDeleted"/> |
||||
<result column="create_dept" property="createDept"/> |
||||
<result column="order_id" property="orderId"/> |
||||
<result column="waybill_id" property="waybillId"/> |
||||
<result column="shopping_id" property="shoppingId"/> |
||||
<result column="delivery_address" property="deliveryAddress"/> |
||||
<result column="consignee" property="consignee"/> |
||||
<result column="duration_in_stock" property="durationInStock"/> |
||||
<result column="goods_total" property="goodsTotal"/> |
||||
<result column="allocate_total" property="allocateTotal"/> |
||||
<result column="volume" property="volume"/> |
||||
<result column="weight" property="weight"/> |
||||
<result column="collect_fee" property="collectFee"/> |
||||
<result column="replace_fee" property="replaceFee"/> |
||||
<result column="addvalue_fee" property="addvalueFee"/> |
||||
<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"/> |
||||
</resultMap> |
||||
|
||||
|
||||
<select id="selectDistributionDeliveryPage" resultMap="distributionDeliveryResultMap"> |
||||
select * from logpm_distribution_delivery where is_deleted = 0 |
||||
</select> |
||||
|
||||
|
||||
<select id="exportDistributionDelivery" resultType="com.logpm.distribution.excel.DistributionDeliveryExcel"> |
||||
SELECT * FROM logpm_distribution_delivery ${ew.customSqlSegment} |
||||
</select> |
||||
|
||||
</mapper> |
@ -0,0 +1,60 @@
|
||||
/* |
||||
* 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.distribution.mapper; |
||||
|
||||
import com.logpm.distribution.entity.DistributionPackadeliEntity; |
||||
import com.logpm.distribution.vo.DistributionPackadeliVO; |
||||
import com.logpm.distribution.excel.DistributionPackadeliExcel; |
||||
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 lmy |
||||
* @since 2023-06-17 |
||||
*/ |
||||
public interface DistributionPackadeliMapper extends BaseMapper<DistributionPackadeliEntity> { |
||||
|
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param distributionPackadeli |
||||
* @return |
||||
*/ |
||||
List<DistributionPackadeliVO> selectDistributionPackadeliPage(IPage page, DistributionPackadeliVO distributionPackadeli); |
||||
|
||||
|
||||
/** |
||||
* 获取导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<DistributionPackadeliExcel> exportDistributionPackadeli(@Param("ew") Wrapper<DistributionPackadeliEntity> queryWrapper); |
||||
/** |
||||
* 通过配送id查询包条数据 |
||||
* |
||||
* @param id |
||||
* @return DistributionPackadeliVO |
||||
*/ |
||||
List<DistributionPackadeliVO> selectjointList(Long id); |
||||
} |
@ -0,0 +1,62 @@
|
||||
<?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.distribution.mapper.DistributionPackadeliMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="distributionPackadeliResultMap" type="com.logpm.distribution.entity.DistributionPackadeliEntity"> |
||||
<result column="id" property="id"/> |
||||
<result column="tenant_id" property="tenantId"/> |
||||
<result column="create_user" property="createUser"/> |
||||
<result column="create_time" property="createTime"/> |
||||
<result column="update_user" property="updateUser"/> |
||||
<result column="update_time" property="updateTime"/> |
||||
<result column="status" property="status"/> |
||||
<result column="is_deleted" property="isDeleted"/> |
||||
<result column="create_dept" property="createDept"/> |
||||
<result column="reserve1" property="reserve1"/> |
||||
<result column="reserve2" property="reserve2"/> |
||||
<result column="reserve3" property="reserve3"/> |
||||
<result column="reserve4" property="reserve4"/> |
||||
<result column="reserve5" property="reserve5"/> |
||||
<result column="delivery_id" property="deliveryId"/> |
||||
<result column="parcel_list_id" property="parcelListId"/> |
||||
<result column="state" property="state"/> |
||||
<result column="number" property="number"/> |
||||
<result column="outbound_number" property="outboundNumber"/> |
||||
</resultMap> |
||||
|
||||
|
||||
<select id="selectDistributionPackadeliPage" resultMap="distributionPackadeliResultMap"> |
||||
select * from logpm_distribution_packadeli where is_deleted = 0 |
||||
</select> |
||||
|
||||
|
||||
<select id="exportDistributionPackadeli" resultType="com.logpm.distribution.excel.DistributionPackadeliExcel"> |
||||
SELECT * FROM logpm_distribution_packadeli ${ew.customSqlSegment} |
||||
</select> |
||||
<select id="selectjointList" resultType="com.logpm.distribution.vo.DistributionPackadeliVO"> |
||||
SELECT |
||||
ldpl.warehouse warehouse, |
||||
ldpl.conditions conditions, |
||||
ldpl.packet_bar_code packetBarCode, |
||||
ldpl.goods_allocation goodsAllocation, |
||||
ldpl.pallet pallet, |
||||
ldpl.firsts firsts, |
||||
ldpl.second second, |
||||
ldpl.third_product thirdProduct, |
||||
ldpl.material material, |
||||
ldpl.quantity quantity, |
||||
ldpl.train_number trainNumber, |
||||
ldpl.stock_article_id stockArticleId, |
||||
ldp.state state, |
||||
ldp.number number, |
||||
ldp.outbound_number outboundNumber |
||||
FROM |
||||
logpm_distribution_packadeli ldp |
||||
JOIN logpm_distribution_parcel_list ldpl ON ldp.parcel_list_id = ldpl.id |
||||
<where> |
||||
ldp.is_deleted = 0 and ldp.delivery_id = #{id} |
||||
</where> |
||||
</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.distribution.service; |
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.logpm.distribution.entity.DistributionPackadeliEntity; |
||||
import com.logpm.distribution.vo.DistributionPackadeliVO; |
||||
import com.logpm.distribution.excel.DistributionPackadeliExcel; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 配送包条中间表 服务类 |
||||
* |
||||
* @author lmy |
||||
* @since 2023-06-17 |
||||
*/ |
||||
public interface IDistributionPackadeliService extends BaseService<DistributionPackadeliEntity> { |
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param distributionPackadeli |
||||
* @return |
||||
*/ |
||||
IPage<DistributionPackadeliVO> selectDistributionPackadeliPage(IPage<DistributionPackadeliVO> page, DistributionPackadeliVO distributionPackadeli); |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<DistributionPackadeliExcel> exportDistributionPackadeli(Wrapper<DistributionPackadeliEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,54 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.distribution.service.impl; |
||||
|
||||
import com.logpm.distribution.entity.DistributionDeliveryInfoEntity; |
||||
import com.logpm.distribution.vo.DistributionDeliveryInfoVO; |
||||
import com.logpm.distribution.excel.DistributionDeliveryInfoExcel; |
||||
import com.logpm.distribution.mapper.DistributionDeliveryInfoMapper; |
||||
import com.logpm.distribution.service.IDistributionDeliveryInfoService; |
||||
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 TJJ |
||||
* @since 2023-06-16 |
||||
*/ |
||||
@Service |
||||
public class DistributionDeliveryInfoServiceImpl extends BaseServiceImpl<DistributionDeliveryInfoMapper, DistributionDeliveryInfoEntity> implements IDistributionDeliveryInfoService { |
||||
|
||||
@Override |
||||
public IPage<DistributionDeliveryInfoVO> selectDistributionDeliveryInfoPage(IPage<DistributionDeliveryInfoVO> page, DistributionDeliveryInfoVO distributionDeliveryInfo) { |
||||
return page.setRecords(baseMapper.selectDistributionDeliveryInfoPage(page, distributionDeliveryInfo)); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public List<DistributionDeliveryInfoExcel> exportDistributionDeliveryInfo(Wrapper<DistributionDeliveryInfoEntity> queryWrapper) { |
||||
List<DistributionDeliveryInfoExcel> distributionDeliveryInfoList = baseMapper.exportDistributionDeliveryInfo(queryWrapper); |
||||
//distributionDeliveryInfoList.forEach(distributionDeliveryInfo -> {
|
||||
// distributionDeliveryInfo.setTypeName(DictCache.getValue(DictEnum.YES_NO, DistributionDeliveryInfo.getType()));
|
||||
//});
|
||||
return distributionDeliveryInfoList; |
||||
} |
||||
|
||||
} |
@ -1,111 +0,0 @@
|
||||
/* |
||||
* 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.distribution.service.impl; |
||||
|
||||
import com.baomidou.mybatisplus.extension.toolkit.SqlHelper; |
||||
import com.logpm.distribution.entity.DistributionAddvalueEntity; |
||||
import com.logpm.distribution.entity.DistributionDeliveryEntity; |
||||
import com.logpm.distribution.mapper.DistributionAddvalueMapper; |
||||
import com.logpm.distribution.service.IDistributionAddvalueService; |
||||
import com.logpm.distribution.vo.DistributionDeliveryVO; |
||||
import com.logpm.distribution.excel.DistributionDeliveryExcel; |
||||
import com.logpm.distribution.mapper.DistributionDeliveryMapper; |
||||
import com.logpm.distribution.service.IDistributionDeliveryService; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springblade.core.tool.api.R; |
||||
import org.springblade.core.tool.utils.Func; |
||||
import org.springframework.beans.BeanUtils; |
||||
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 org.springframework.transaction.annotation.Transactional; |
||||
|
||||
import java.math.BigDecimal; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
|
||||
/** |
||||
* 配送单 服务实现类 |
||||
* |
||||
* @author TJJ |
||||
* @since 2023-06-15 |
||||
*/ |
||||
@Service |
||||
@AllArgsConstructor |
||||
public class DistributionDeliveryServiceImpl extends BaseServiceImpl<DistributionDeliveryMapper, DistributionDeliveryEntity> implements IDistributionDeliveryService { |
||||
|
||||
private DistributionDeliveryMapper distributionDeliveryMapper; |
||||
|
||||
private IDistributionAddvalueService distributionAddvalueService; |
||||
|
||||
@Override |
||||
public IPage<DistributionDeliveryVO> selectDistributionDeliveryPage(IPage<DistributionDeliveryVO> page, DistributionDeliveryVO distributionDelivery) { |
||||
return page.setRecords(baseMapper.selectDistributionDeliveryPage(page, distributionDelivery)); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public List<DistributionDeliveryExcel> exportDistributionDelivery(Wrapper<DistributionDeliveryEntity> queryWrapper) { |
||||
List<DistributionDeliveryExcel> distributionDeliveryList = baseMapper.exportDistributionDelivery(queryWrapper); |
||||
//distributionDeliveryList.forEach(distributionDelivery -> {
|
||||
// distributionDelivery.setTypeName(DictCache.getValue(DictEnum.YES_NO, DistributionDelivery.getType()));
|
||||
//});
|
||||
return distributionDeliveryList; |
||||
} |
||||
|
||||
@Override |
||||
@Transactional |
||||
public R<?> addIncrement(Map<String, Object> addvalueInfo) { |
||||
boolean result = false; |
||||
if (!Func.isEmpty(addvalueInfo)){ |
||||
String deliveryId = (String) addvalueInfo.get("id"); |
||||
DistributionDeliveryEntity distributionDeliveryEntity = distributionDeliveryMapper.selectById(deliveryId); |
||||
//获取配送单增值服务费用
|
||||
BigDecimal addvalueFee = distributionDeliveryEntity.getAddvalueFee(); |
||||
if (!Func.isEmpty(distributionDeliveryEntity)){ |
||||
List<Map<String,Object>> addvalueEntities = (List<Map<String, Object>>) addvalueInfo.get("addvalue"); |
||||
if (!Func.isEmpty(addvalueEntities)){ |
||||
for (Map<String, Object> addvalueEntityInfo : addvalueEntities) { |
||||
//这里需要针对增值服务类型的价格进行查询并且进行累加,这里目前采取使用用户填写的方式
|
||||
//TODO 这里应该和基础价格进行联动,不遵循用户填写而是依靠价格基础表
|
||||
String feeStr = (String) addvalueEntityInfo.get("fee"); |
||||
BigDecimal fee = new BigDecimal(feeStr); |
||||
DistributionAddvalueEntity addvalueEntity = Func.copy(addvalueEntityInfo, DistributionAddvalueEntity.class); |
||||
//设置关联的配送编号
|
||||
addvalueEntity.setDeliveryId(distributionDeliveryEntity.getId()); |
||||
//完成每一项的增值服务费用累加
|
||||
addvalueEntity.setFee(fee); |
||||
addvalueFee.add(fee); |
||||
result = distributionAddvalueService.save(addvalueEntity); |
||||
|
||||
} |
||||
//TODO 这里就应该对累加的增值服务费用和配送单本身费用进行累加并完成数据修改
|
||||
result = SqlHelper.retBool(distributionDeliveryMapper.updateById(distributionDeliveryEntity)); |
||||
if (!result){ |
||||
|
||||
log.error("sql执行结果:+{"+result+"}"); |
||||
return R.fail("服务器正忙,请稍后再试!!!"); |
||||
} |
||||
} |
||||
} |
||||
} |
||||
//这里根据id查询配送单信息
|
||||
return R.status(result); |
||||
} |
||||
|
||||
} |
@ -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.distribution.service.impl; |
||||
|
||||
import com.logpm.distribution.entity.DistributionPackadeliEntity; |
||||
import com.logpm.distribution.vo.DistributionPackadeliVO; |
||||
import com.logpm.distribution.excel.DistributionPackadeliExcel; |
||||
import com.logpm.distribution.mapper.DistributionPackadeliMapper; |
||||
import com.logpm.distribution.service.IDistributionPackadeliService; |
||||
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 lmy |
||||
* @since 2023-06-17 |
||||
*/ |
||||
@Service |
||||
public class DistributionPackadeliServiceImpl extends BaseServiceImpl<DistributionPackadeliMapper, DistributionPackadeliEntity> implements IDistributionPackadeliService { |
||||
|
||||
@Override |
||||
public IPage<DistributionPackadeliVO> selectDistributionPackadeliPage(IPage<DistributionPackadeliVO> page, DistributionPackadeliVO distributionPackadeli) { |
||||
return page.setRecords(baseMapper.selectDistributionPackadeliPage(page, distributionPackadeli)); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public List<DistributionPackadeliExcel> exportDistributionPackadeli(Wrapper<DistributionPackadeliEntity> queryWrapper) { |
||||
List<DistributionPackadeliExcel> distributionPackadeliList = baseMapper.exportDistributionPackadeli(queryWrapper); |
||||
//distributionPackadeliList.forEach(distributionPackadeli -> {
|
||||
// distributionPackadeli.setTypeName(DictCache.getValue(DictEnum.YES_NO, DistributionPackadeli.getType()));
|
||||
//});
|
||||
return distributionPackadeliList; |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue