77 changed files with 5026 additions and 205 deletions
@ -0,0 +1,271 @@
|
||||
/* |
||||
* 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 lmy |
||||
* @since 2023-06-27 |
||||
*/ |
||||
@Data |
||||
@TableName("logpm_distribution_loadscan") |
||||
@ApiModel(value = "DistributionLoadscan对象", description = "装车扫描表") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class DistributionLoadscanEntity 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; |
||||
/** |
||||
* 扫码类型;(1-件装车,2-托盘装车) |
||||
*/ |
||||
@ApiModelProperty(value = "扫码类型;(1-件装车,2-托盘装车)") |
||||
private String scanType; |
||||
/** |
||||
* 托盘id |
||||
*/ |
||||
@ApiModelProperty(value = "托盘id") |
||||
private String trayId; |
||||
/** |
||||
* 品牌id |
||||
*/ |
||||
@ApiModelProperty(value = "品牌id") |
||||
private String brandId; |
||||
/** |
||||
* 品牌名字 |
||||
*/ |
||||
@ApiModelProperty(value = "品牌名字") |
||||
private String brandName; |
||||
/** |
||||
* 托盘码 |
||||
*/ |
||||
@ApiModelProperty(value = "托盘码") |
||||
private String trayNo; |
||||
|
||||
/** |
||||
* 车次号 |
||||
*/ |
||||
@ApiModelProperty(value = "车次号") |
||||
private String trainNumber; |
||||
|
||||
/** |
||||
* 配送车辆id |
||||
*/ |
||||
@ApiModelProperty(value = "配送车辆id") |
||||
private String vehicleId; |
||||
|
||||
/** |
||||
* 配送司机id |
||||
*/ |
||||
@ApiModelProperty(value = "配送司机id") |
||||
private String driverId; |
||||
|
||||
/** |
||||
* 配送车辆车牌 |
||||
*/ |
||||
@ApiModelProperty(value = "配送车辆车牌") |
||||
private String vehicleName; |
||||
|
||||
/** |
||||
* 配送司机名称 |
||||
*/ |
||||
@ApiModelProperty(value = "配送司机名称") |
||||
private String driverName; |
||||
|
||||
/** |
||||
* 扫描仓库id |
||||
*/ |
||||
@ApiModelProperty(value = "扫描仓库id") |
||||
private Long warehouseId; |
||||
|
||||
/** |
||||
* 仓库名称 |
||||
*/ |
||||
@ApiModelProperty(value = "仓库名称") |
||||
private String warehouseName; |
||||
|
||||
/** |
||||
* 包条表id |
||||
*/ |
||||
@ApiModelProperty(value = "包条表id") |
||||
private Long packageId; |
||||
|
||||
/** |
||||
* 包条码 |
||||
*/ |
||||
@ApiModelProperty(value = "包条码") |
||||
private String packetBarCode; |
||||
|
||||
/** |
||||
* 扫描状态;(1=未装车,2=扫描,3=确认) |
||||
*/ |
||||
@ApiModelProperty(value = "扫描状态;(1=未装车,2=扫描,3=确认)") |
||||
private Integer scanStatus; |
||||
|
||||
/** |
||||
* 确认时间 |
||||
*/ |
||||
@ApiModelProperty(value = "确认时间") |
||||
private Date confirmTime; |
||||
|
||||
/** |
||||
* 扫描时间 |
||||
*/ |
||||
@ApiModelProperty(value = "扫描时间") |
||||
private Date scanTime; |
||||
|
||||
/** |
||||
* 是否齐套;(1未齐套,2齐套) |
||||
*/ |
||||
@ApiModelProperty(value = "是否齐套;(1未齐套,2齐套)") |
||||
private Integer kitting; |
||||
|
||||
/** |
||||
* 类型;(1卸车,2装车) |
||||
*/ |
||||
@ApiModelProperty(value = "类型;(1卸车,2装车)") |
||||
private Integer type; |
||||
|
||||
/** |
||||
* 滞留操作人 |
||||
*/ |
||||
@ApiModelProperty(value = "滞留操作人") |
||||
private String detentionPerson; |
||||
|
||||
/** |
||||
* 卸货仓库id |
||||
*/ |
||||
@ApiModelProperty(value = "卸货仓库id") |
||||
private Long unWarehouseId; |
||||
|
||||
/** |
||||
* 卸货仓库名称 |
||||
*/ |
||||
@ApiModelProperty(value = "卸货仓库名称") |
||||
private String unWarehouseName; |
||||
|
||||
/** |
||||
* 卸货人id |
||||
*/ |
||||
@ApiModelProperty(value = "卸货人id") |
||||
private Long unAdministratorsId; |
||||
|
||||
/** |
||||
* 卸货人名称 |
||||
*/ |
||||
@ApiModelProperty(value = "卸货人名称") |
||||
private String unAdministratorsName; |
||||
|
||||
/** |
||||
* 补录;(1=正常,2=补录数据) |
||||
*/ |
||||
@ApiModelProperty(value = "补录;(1=正常,2=补录数据)") |
||||
private Integer isInsert; |
||||
|
||||
/** |
||||
* 扫码状态;(1=无数据装车;2=有数据装车) |
||||
*/ |
||||
@ApiModelProperty(value = "扫码状态;(1=无数据装车;2=有数据装车)") |
||||
private Integer scanState; |
||||
|
||||
/** |
||||
* 同步;(1=正常数据,2=无编码未同步,3=无编码已同步待绑定) |
||||
*/ |
||||
@ApiModelProperty(value = "同步;(1=正常数据,2=无编码未同步,3=无编码已同步待绑定)") |
||||
private Integer scanSynchronous; |
||||
|
||||
/** |
||||
* 计划目的网点 |
||||
*/ |
||||
@ApiModelProperty(value = "计划目的网点") |
||||
private String planDestinationId; |
||||
|
||||
/** |
||||
* 备注信息 |
||||
*/ |
||||
@ApiModelProperty(value = "备注信息") |
||||
private String msg; |
||||
|
||||
/** |
||||
* 卸车时间 |
||||
*/ |
||||
@ApiModelProperty(value = "卸车时间") |
||||
private Date unloadTime; |
||||
|
||||
|
||||
/** |
||||
* 订单表id |
||||
*/ |
||||
@ApiModelProperty(value = "订单表id") |
||||
private Long orderId; |
||||
|
||||
/** |
||||
* 客户表id |
||||
*/ |
||||
@ApiModelProperty(value = "客户表id") |
||||
private Long reservationId; |
||||
|
||||
/** |
||||
* 配送表id |
||||
*/ |
||||
@ApiModelProperty(value = "配送表id") |
||||
private Long deliveryId; |
||||
|
||||
/** |
||||
* 装车数量 |
||||
*/ |
||||
@ApiModelProperty(value = "装车数量") |
||||
private Integer loadedNub; |
||||
|
||||
/** |
||||
* 包内数量 |
||||
*/ |
||||
@ApiModelProperty(value = "包内数量") |
||||
private Integer packageNub; |
||||
|
||||
} |
@ -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-26 |
||||
*/ |
||||
@Data |
||||
@TableName("logpm_distribution_self_delivery") |
||||
@ApiModel(value = "DistributionSelfDelivery对象", description = "自主配送信息列表") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class DistributionSelfDeliveryEntity extends TenantEntity { |
||||
|
||||
/** |
||||
* 预约信息编号 |
||||
*/ |
||||
@ApiModelProperty(value = "预约信息编号") |
||||
private String reservationIds; |
||||
/** |
||||
* 车辆编号 |
||||
*/ |
||||
@ApiModelProperty(value = "车辆编号") |
||||
private String vehicleIds; |
||||
/** |
||||
* 司机负责人 |
||||
*/ |
||||
@ApiModelProperty(value = "司机负责人") |
||||
private String masterDriverId; |
||||
/** |
||||
* 配送司机 |
||||
*/ |
||||
@ApiModelProperty(value = "配送司机") |
||||
private String slaveDriverIds; |
||||
/** |
||||
* 预留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; |
||||
|
||||
} |
@ -0,0 +1,91 @@
|
||||
/* |
||||
* 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 java.math.BigDecimal; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
/** |
||||
* 外协配送信息列表 实体类 |
||||
* |
||||
* @author TJJ |
||||
* @since 2023-06-26 |
||||
*/ |
||||
@Data |
||||
@TableName("logpm_distribution_tripartite_delivery") |
||||
@ApiModel(value = "DistributionTripartiteDelivery对象", description = "外协配送信息列表") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class DistributionTripartiteDeliveryEntity extends TenantEntity { |
||||
|
||||
/** |
||||
* 司机名称 |
||||
*/ |
||||
@ApiModelProperty(value = "司机名称") |
||||
private String driverName; |
||||
/** |
||||
* 司机电话 |
||||
*/ |
||||
@ApiModelProperty(value = "司机电话") |
||||
private String driverPhone; |
||||
/** |
||||
* 车辆车牌 |
||||
*/ |
||||
@ApiModelProperty(value = "车辆车牌") |
||||
private String vehicleNum; |
||||
/** |
||||
* 预约信息编号 |
||||
*/ |
||||
@ApiModelProperty(value = "预约信息") |
||||
private String reservationIds; |
||||
/** |
||||
* 配送费用 |
||||
*/ |
||||
@ApiModelProperty(value = "配送费用") |
||||
private BigDecimal deliveryFee; |
||||
/** |
||||
* 预留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; |
||||
|
||||
} |
@ -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.DistributionLoadscanEntity; |
||||
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-27 |
||||
*/ |
||||
@FeignClient( |
||||
value = ModuleNameConstant.APPLICATION_DISTRIBUTION_NAME |
||||
) |
||||
public interface IDistributionLoadscanClient { |
||||
|
||||
String API_PREFIX = "loadscan/client"; |
||||
String TOP = API_PREFIX + "/top"; |
||||
|
||||
/** |
||||
* 获取装车扫描表列表 |
||||
* |
||||
* @param current 页号 |
||||
* @param size 页数 |
||||
* @return BladePage |
||||
*/ |
||||
@GetMapping(TOP) |
||||
BladePage<DistributionLoadscanEntity> top(@RequestParam("current") Integer current, @RequestParam("size") Integer size); |
||||
|
||||
} |
@ -0,0 +1,49 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.distribution.feign; |
||||
|
||||
import org.springblade.core.mp.support.BladePage; |
||||
import com.logpm.distribution.entity.DistributionSelfDeliveryEntity; |
||||
import org.springframework.cloud.openfeign.FeignClient; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RequestParam; |
||||
|
||||
/** |
||||
* 自主配送信息列表 Feign接口类 |
||||
* |
||||
* @author TJJ |
||||
* @since 2023-06-26 |
||||
*/ |
||||
@FeignClient( |
||||
value = "selfDelivery" |
||||
) |
||||
public interface IDistributionSelfDeliveryClient { |
||||
|
||||
String API_PREFIX = "selfDelivery/client"; |
||||
String TOP = API_PREFIX + "/top"; |
||||
|
||||
/** |
||||
* 获取自主配送信息列表列表 |
||||
* |
||||
* @param current 页号 |
||||
* @param size 页数 |
||||
* @return BladePage |
||||
*/ |
||||
@GetMapping(TOP) |
||||
BladePage<DistributionSelfDeliveryEntity> selfDeliveryTop(@RequestParam("current") Integer current, @RequestParam("size") Integer size); |
||||
|
||||
} |
@ -0,0 +1,49 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.distribution.feign; |
||||
|
||||
import org.springblade.core.mp.support.BladePage; |
||||
import com.logpm.distribution.entity.DistributionTripartiteDeliveryEntity; |
||||
import org.springframework.cloud.openfeign.FeignClient; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RequestParam; |
||||
|
||||
/** |
||||
* 外协配送信息列表 Feign接口类 |
||||
* |
||||
* @author TJJ |
||||
* @since 2023-06-26 |
||||
*/ |
||||
@FeignClient( |
||||
value = "tripartiteDelivery" |
||||
) |
||||
public interface IDistributionTripartiteDeliveryClient { |
||||
|
||||
String API_PREFIX = "tripartiteDelivery/client"; |
||||
String TOP = API_PREFIX + "/top"; |
||||
|
||||
/** |
||||
* 获取外协配送信息列表列表 |
||||
* |
||||
* @param current 页号 |
||||
* @param size 页数 |
||||
* @return BladePage |
||||
*/ |
||||
@GetMapping(TOP) |
||||
BladePage<DistributionTripartiteDeliveryEntity> tripartiteDeliveryTop(@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.distribution.vo; |
||||
|
||||
import com.logpm.distribution.entity.DistributionLoadscanEntity; |
||||
import org.springblade.core.tool.node.INode; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 装车扫描表 视图实体类 |
||||
* |
||||
* @author lmy |
||||
* @since 2023-06-27 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class DistributionLoadscanVO extends DistributionLoadscanEntity { |
||||
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.distribution.vo; |
||||
|
||||
import com.logpm.distribution.entity.DistributionSelfDeliveryEntity; |
||||
import org.springblade.core.tool.node.INode; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 自主配送信息列表 视图实体类 |
||||
* |
||||
* @author TJJ |
||||
* @since 2023-06-26 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class DistributionSelfDeliveryVO extends DistributionSelfDeliveryEntity { |
||||
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.distribution.vo; |
||||
|
||||
import com.logpm.distribution.entity.DistributionTripartiteDeliveryEntity; |
||||
import org.springblade.core.tool.node.INode; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 外协配送信息列表 视图实体类 |
||||
* |
||||
* @author TJJ |
||||
* @since 2023-06-26 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class DistributionTripartiteDeliveryVO extends DistributionTripartiteDeliveryEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,150 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.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.DistributionLoadscanEntity; |
||||
import com.logpm.distribution.vo.DistributionLoadscanVO; |
||||
import com.logpm.distribution.excel.DistributionLoadscanExcel; |
||||
import com.logpm.distribution.service.IDistributionLoadscanService; |
||||
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-27 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("loadscan/distributionLoadscan") |
||||
@Api(value = "装车扫描表", tags = "装车扫描表接口") |
||||
public class DistributionLoadscanController extends BladeController { |
||||
|
||||
private final IDistributionLoadscanService distributionLoadscanService; |
||||
|
||||
/** |
||||
* 装车扫描表 详情 |
||||
*/ |
||||
@GetMapping("/detail") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "详情", notes = "传入distributionLoadscan") |
||||
public R<DistributionLoadscanEntity> detail(DistributionLoadscanEntity distributionLoadscan) { |
||||
DistributionLoadscanEntity detail = distributionLoadscanService.getOne(Condition.getQueryWrapper(distributionLoadscan)); |
||||
return R.data(detail); |
||||
} |
||||
/** |
||||
* 装车扫描表 分页 |
||||
*/ |
||||
@GetMapping("/list") |
||||
@ApiOperationSupport(order = 2) |
||||
@ApiOperation(value = "分页", notes = "传入distributionLoadscan") |
||||
public R<IPage<DistributionLoadscanEntity>> list(@ApiIgnore @RequestParam Map<String, Object> distributionLoadscan, Query query) { |
||||
IPage<DistributionLoadscanEntity> pages = distributionLoadscanService.page(Condition.getPage(query), Condition.getQueryWrapper(distributionLoadscan, DistributionLoadscanEntity.class)); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 装车扫描表 自定义分页 |
||||
*/ |
||||
@GetMapping("/page") |
||||
@ApiOperationSupport(order = 3) |
||||
@ApiOperation(value = "分页", notes = "传入distributionLoadscan") |
||||
public R<IPage<DistributionLoadscanVO>> page(DistributionLoadscanVO distributionLoadscan, Query query) { |
||||
IPage<DistributionLoadscanVO> pages = distributionLoadscanService.selectDistributionLoadscanPage(Condition.getPage(query), distributionLoadscan); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 装车扫描表 新增 |
||||
*/ |
||||
@PostMapping("/save") |
||||
@ApiOperationSupport(order = 4) |
||||
@ApiOperation(value = "新增", notes = "传入distributionLoadscan") |
||||
public R save(@Valid @RequestBody DistributionLoadscanEntity distributionLoadscan) { |
||||
return R.status(distributionLoadscanService.save(distributionLoadscan)); |
||||
} |
||||
|
||||
/** |
||||
* 装车扫描表 修改 |
||||
*/ |
||||
@PostMapping("/update") |
||||
@ApiOperationSupport(order = 5) |
||||
@ApiOperation(value = "修改", notes = "传入distributionLoadscan") |
||||
public R update(@Valid @RequestBody DistributionLoadscanEntity distributionLoadscan) { |
||||
return R.status(distributionLoadscanService.updateById(distributionLoadscan)); |
||||
} |
||||
|
||||
/** |
||||
* 装车扫描表 新增或修改 |
||||
*/ |
||||
@PostMapping("/submit") |
||||
@ApiOperationSupport(order = 6) |
||||
@ApiOperation(value = "新增或修改", notes = "传入distributionLoadscan") |
||||
public R submit(@Valid @RequestBody DistributionLoadscanEntity distributionLoadscan) { |
||||
return R.status(distributionLoadscanService.saveOrUpdate(distributionLoadscan)); |
||||
} |
||||
|
||||
/** |
||||
* 装车扫描表 删除 |
||||
*/ |
||||
@PostMapping("/remove") |
||||
@ApiOperationSupport(order = 7) |
||||
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||
return R.status(distributionLoadscanService.deleteLogic(Func.toLongList(ids))); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
*/ |
||||
@GetMapping("/export-distributionLoadscan") |
||||
@ApiOperationSupport(order = 9) |
||||
@ApiOperation(value = "导出数据", notes = "传入distributionLoadscan") |
||||
public void exportDistributionLoadscan(@ApiIgnore @RequestParam Map<String, Object> distributionLoadscan, BladeUser bladeUser, HttpServletResponse response) { |
||||
QueryWrapper<DistributionLoadscanEntity> queryWrapper = Condition.getQueryWrapper(distributionLoadscan, DistributionLoadscanEntity.class); |
||||
//if (!AuthUtil.isAdministrator()) {
|
||||
// queryWrapper.lambda().eq(DistributionLoadscan::getTenantId, bladeUser.getTenantId());
|
||||
//}
|
||||
queryWrapper.lambda().eq(DistributionLoadscanEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED); |
||||
List<DistributionLoadscanExcel> list = distributionLoadscanService.exportDistributionLoadscan(queryWrapper); |
||||
ExcelUtil.export(response, "装车扫描表数据" + DateUtil.time(), "装车扫描表数据表", list, DistributionLoadscanExcel.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.DistributionSelfDeliveryEntity; |
||||
import com.logpm.distribution.vo.DistributionSelfDeliveryVO; |
||||
import com.logpm.distribution.excel.DistributionSelfDeliveryExcel; |
||||
import com.logpm.distribution.service.IDistributionSelfDeliveryService; |
||||
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-26 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("selfDelivery/distributionSelfDelivery") |
||||
@Api(value = "自主配送信息列表", tags = "自主配送信息列表接口") |
||||
public class DistributionSelfDeliveryController extends BladeController { |
||||
|
||||
private final IDistributionSelfDeliveryService distributionSelfDeliveryService; |
||||
|
||||
/** |
||||
* 自主配送信息列表 详情 |
||||
*/ |
||||
@GetMapping("/detail") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "详情", notes = "传入distributionSelfDelivery") |
||||
public R<DistributionSelfDeliveryEntity> detail(DistributionSelfDeliveryEntity distributionSelfDelivery) { |
||||
DistributionSelfDeliveryEntity detail = distributionSelfDeliveryService.getOne(Condition.getQueryWrapper(distributionSelfDelivery)); |
||||
return R.data(detail); |
||||
} |
||||
/** |
||||
* 自主配送信息列表 分页 |
||||
*/ |
||||
@GetMapping("/list") |
||||
@ApiOperationSupport(order = 2) |
||||
@ApiOperation(value = "分页", notes = "传入distributionSelfDelivery") |
||||
public R<IPage<DistributionSelfDeliveryEntity>> list(@ApiIgnore @RequestParam Map<String, Object> distributionSelfDelivery, Query query) { |
||||
IPage<DistributionSelfDeliveryEntity> pages = distributionSelfDeliveryService.page(Condition.getPage(query), Condition.getQueryWrapper(distributionSelfDelivery, DistributionSelfDeliveryEntity.class)); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 自主配送信息列表 自定义分页 |
||||
*/ |
||||
@GetMapping("/page") |
||||
@ApiOperationSupport(order = 3) |
||||
@ApiOperation(value = "分页", notes = "传入distributionSelfDelivery") |
||||
public R<IPage<DistributionSelfDeliveryVO>> page(DistributionSelfDeliveryVO distributionSelfDelivery, Query query) { |
||||
IPage<DistributionSelfDeliveryVO> pages = distributionSelfDeliveryService.selectDistributionSelfDeliveryPage(Condition.getPage(query), distributionSelfDelivery); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 自主配送信息列表 新增 |
||||
*/ |
||||
@PostMapping("/save") |
||||
@ApiOperationSupport(order = 4) |
||||
@ApiOperation(value = "新增", notes = "传入distributionSelfDelivery") |
||||
public R save(@Valid @RequestBody DistributionSelfDeliveryEntity distributionSelfDelivery) { |
||||
return R.status(distributionSelfDeliveryService.save(distributionSelfDelivery)); |
||||
} |
||||
|
||||
/** |
||||
* 自主配送信息列表 修改 |
||||
*/ |
||||
@PostMapping("/update") |
||||
@ApiOperationSupport(order = 5) |
||||
@ApiOperation(value = "修改", notes = "传入distributionSelfDelivery") |
||||
public R update(@Valid @RequestBody DistributionSelfDeliveryEntity distributionSelfDelivery) { |
||||
return R.status(distributionSelfDeliveryService.updateById(distributionSelfDelivery)); |
||||
} |
||||
|
||||
/** |
||||
* 自主配送信息列表 新增或修改 |
||||
*/ |
||||
@PostMapping("/submit") |
||||
@ApiOperationSupport(order = 6) |
||||
@ApiOperation(value = "新增或修改", notes = "传入distributionSelfDelivery") |
||||
public R submit(@Valid @RequestBody DistributionSelfDeliveryEntity distributionSelfDelivery) { |
||||
return R.status(distributionSelfDeliveryService.saveOrUpdate(distributionSelfDelivery)); |
||||
} |
||||
|
||||
/** |
||||
* 自主配送信息列表 删除 |
||||
*/ |
||||
@PostMapping("/remove") |
||||
@ApiOperationSupport(order = 7) |
||||
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||
return R.status(distributionSelfDeliveryService.deleteLogic(Func.toLongList(ids))); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
*/ |
||||
@GetMapping("/export-distributionSelfDelivery") |
||||
@ApiOperationSupport(order = 9) |
||||
@ApiOperation(value = "导出数据", notes = "传入distributionSelfDelivery") |
||||
public void exportDistributionSelfDelivery(@ApiIgnore @RequestParam Map<String, Object> distributionSelfDelivery, BladeUser bladeUser, HttpServletResponse response) { |
||||
QueryWrapper<DistributionSelfDeliveryEntity> queryWrapper = Condition.getQueryWrapper(distributionSelfDelivery, DistributionSelfDeliveryEntity.class); |
||||
//if (!AuthUtil.isAdministrator()) {
|
||||
// queryWrapper.lambda().eq(DistributionSelfDelivery::getTenantId, bladeUser.getTenantId());
|
||||
//}
|
||||
queryWrapper.lambda().eq(DistributionSelfDeliveryEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED); |
||||
List<DistributionSelfDeliveryExcel> list = distributionSelfDeliveryService.exportDistributionSelfDelivery(queryWrapper); |
||||
ExcelUtil.export(response, "自主配送信息列表数据" + DateUtil.time(), "自主配送信息列表数据表", list, DistributionSelfDeliveryExcel.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.DistributionTripartiteDeliveryEntity; |
||||
import com.logpm.distribution.vo.DistributionTripartiteDeliveryVO; |
||||
import com.logpm.distribution.excel.DistributionTripartiteDeliveryExcel; |
||||
import com.logpm.distribution.service.IDistributionTripartiteDeliveryService; |
||||
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-26 |
||||
*/ |
||||
@RestController |
||||
@AllArgsConstructor |
||||
@RequestMapping("tripartiteDelivery/distributionTripartiteDelivery") |
||||
@Api(value = "外协配送信息列表", tags = "外协配送信息列表接口") |
||||
public class DistributionTripartiteDeliveryController extends BladeController { |
||||
|
||||
private final IDistributionTripartiteDeliveryService distributionTripartiteDeliveryService; |
||||
|
||||
/** |
||||
* 外协配送信息列表 详情 |
||||
*/ |
||||
@GetMapping("/detail") |
||||
@ApiOperationSupport(order = 1) |
||||
@ApiOperation(value = "详情", notes = "传入distributionTripartiteDelivery") |
||||
public R<DistributionTripartiteDeliveryEntity> detail(DistributionTripartiteDeliveryEntity distributionTripartiteDelivery) { |
||||
DistributionTripartiteDeliveryEntity detail = distributionTripartiteDeliveryService.getOne(Condition.getQueryWrapper(distributionTripartiteDelivery)); |
||||
return R.data(detail); |
||||
} |
||||
/** |
||||
* 外协配送信息列表 分页 |
||||
*/ |
||||
@GetMapping("/list") |
||||
@ApiOperationSupport(order = 2) |
||||
@ApiOperation(value = "分页", notes = "传入distributionTripartiteDelivery") |
||||
public R<IPage<DistributionTripartiteDeliveryEntity>> list(@ApiIgnore @RequestParam Map<String, Object> distributionTripartiteDelivery, Query query) { |
||||
IPage<DistributionTripartiteDeliveryEntity> pages = distributionTripartiteDeliveryService.page(Condition.getPage(query), Condition.getQueryWrapper(distributionTripartiteDelivery, DistributionTripartiteDeliveryEntity.class)); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 外协配送信息列表 自定义分页 |
||||
*/ |
||||
@GetMapping("/page") |
||||
@ApiOperationSupport(order = 3) |
||||
@ApiOperation(value = "分页", notes = "传入distributionTripartiteDelivery") |
||||
public R<IPage<DistributionTripartiteDeliveryVO>> page(DistributionTripartiteDeliveryVO distributionTripartiteDelivery, Query query) { |
||||
IPage<DistributionTripartiteDeliveryVO> pages = distributionTripartiteDeliveryService.selectDistributionTripartiteDeliveryPage(Condition.getPage(query), distributionTripartiteDelivery); |
||||
return R.data(pages); |
||||
} |
||||
|
||||
/** |
||||
* 外协配送信息列表 新增 |
||||
*/ |
||||
@PostMapping("/save") |
||||
@ApiOperationSupport(order = 4) |
||||
@ApiOperation(value = "新增", notes = "传入distributionTripartiteDelivery") |
||||
public R save(@Valid @RequestBody DistributionTripartiteDeliveryEntity distributionTripartiteDelivery) { |
||||
return R.status(distributionTripartiteDeliveryService.save(distributionTripartiteDelivery)); |
||||
} |
||||
|
||||
/** |
||||
* 外协配送信息列表 修改 |
||||
*/ |
||||
@PostMapping("/update") |
||||
@ApiOperationSupport(order = 5) |
||||
@ApiOperation(value = "修改", notes = "传入distributionTripartiteDelivery") |
||||
public R update(@Valid @RequestBody DistributionTripartiteDeliveryEntity distributionTripartiteDelivery) { |
||||
return R.status(distributionTripartiteDeliveryService.updateById(distributionTripartiteDelivery)); |
||||
} |
||||
|
||||
/** |
||||
* 外协配送信息列表 新增或修改 |
||||
*/ |
||||
@PostMapping("/submit") |
||||
@ApiOperationSupport(order = 6) |
||||
@ApiOperation(value = "新增或修改", notes = "传入distributionTripartiteDelivery") |
||||
public R submit(@Valid @RequestBody DistributionTripartiteDeliveryEntity distributionTripartiteDelivery) { |
||||
return R.status(distributionTripartiteDeliveryService.saveOrUpdate(distributionTripartiteDelivery)); |
||||
} |
||||
|
||||
/** |
||||
* 外协配送信息列表 删除 |
||||
*/ |
||||
@PostMapping("/remove") |
||||
@ApiOperationSupport(order = 7) |
||||
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
||||
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
||||
return R.status(distributionTripartiteDeliveryService.deleteLogic(Func.toLongList(ids))); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
*/ |
||||
@GetMapping("/export-distributionTripartiteDelivery") |
||||
@ApiOperationSupport(order = 9) |
||||
@ApiOperation(value = "导出数据", notes = "传入distributionTripartiteDelivery") |
||||
public void exportDistributionTripartiteDelivery(@ApiIgnore @RequestParam Map<String, Object> distributionTripartiteDelivery, BladeUser bladeUser, HttpServletResponse response) { |
||||
QueryWrapper<DistributionTripartiteDeliveryEntity> queryWrapper = Condition.getQueryWrapper(distributionTripartiteDelivery, DistributionTripartiteDeliveryEntity.class); |
||||
//if (!AuthUtil.isAdministrator()) {
|
||||
// queryWrapper.lambda().eq(DistributionTripartiteDelivery::getTenantId, bladeUser.getTenantId());
|
||||
//}
|
||||
queryWrapper.lambda().eq(DistributionTripartiteDeliveryEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED); |
||||
List<DistributionTripartiteDeliveryExcel> list = distributionTripartiteDeliveryService.exportDistributionTripartiteDelivery(queryWrapper); |
||||
ExcelUtil.export(response, "外协配送信息列表数据" + DateUtil.time(), "外协配送信息列表数据表", list, DistributionTripartiteDeliveryExcel.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.DistributionLoadscanEntity; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 装车扫描表 数据传输对象实体类 |
||||
* |
||||
* @author lmy |
||||
* @since 2023-06-27 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class DistributionLoadscanDTO extends DistributionLoadscanEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -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.DistributionSelfDeliveryEntity; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 自主配送信息列表 数据传输对象实体类 |
||||
* |
||||
* @author TJJ |
||||
* @since 2023-06-26 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class DistributionSelfDeliveryDTO extends DistributionSelfDeliveryEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -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.DistributionTripartiteDeliveryEntity; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
/** |
||||
* 外协配送信息列表 数据传输对象实体类 |
||||
* |
||||
* @author TJJ |
||||
* @since 2023-06-26 |
||||
*/ |
||||
@Data |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class DistributionTripartiteDeliveryDTO extends DistributionTripartiteDeliveryEntity { |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
} |
@ -0,0 +1,26 @@
|
||||
package com.logpm.distribution.dto; |
||||
|
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.NonNull; |
||||
|
||||
import javax.validation.constraints.NotEmpty; |
||||
|
||||
@Data |
||||
public class DistrilbutionloadingscanDTO { |
||||
/** |
||||
* 扫描包条信息 |
||||
*/ |
||||
|
||||
@ApiModelProperty(value = "扫描包条信息") |
||||
@NotEmpty(message = "扫描单号不能为空") |
||||
private String barcode; |
||||
|
||||
|
||||
/** |
||||
* 扫描类型 |
||||
*/ |
||||
@ApiModelProperty(value = "扫描类型(1-包条,2-托盘)") |
||||
@NotEmpty(message = "扫描类型不能为空") |
||||
private Integer type; |
||||
} |
@ -0,0 +1,316 @@
|
||||
/* |
||||
* 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 lmy |
||||
* @since 2023-06-27 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class DistributionLoadscanExcel 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; |
||||
/** |
||||
* 扫码类型;(1-件装车,2-托盘装车) |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("扫码类型;(1-件装车,2-托盘装车)") |
||||
private String scanType; |
||||
/** |
||||
* 托盘id |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("托盘id") |
||||
private String trayId; |
||||
/** |
||||
* 品牌id |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("品牌id") |
||||
private String brandId; |
||||
/** |
||||
* 品牌名字 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("品牌名字") |
||||
private String brandName; |
||||
/** |
||||
* 托盘码 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("托盘码") |
||||
private String trayNo; |
||||
/** |
||||
* 车次号 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("车次号") |
||||
private String trainNumber; |
||||
/** |
||||
* 配送车辆id |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("配送车辆id") |
||||
private String vehicleId; |
||||
/** |
||||
* 配送司机id |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("配送司机id") |
||||
private String driverId; |
||||
/** |
||||
* 配送车辆车牌 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("配送车辆车牌") |
||||
private String vehicleName; |
||||
/** |
||||
* 配送司机名称 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("配送司机名称") |
||||
private String driverName; |
||||
/** |
||||
* 扫描仓库id |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("扫描仓库id") |
||||
private Long warehouseId; |
||||
|
||||
/** |
||||
* 仓库名称 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("仓库名称") |
||||
private String warehouseName; |
||||
/** |
||||
* 包条表id |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("包条表id") |
||||
private Long packageId; |
||||
/** |
||||
* 包条码 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("包条码") |
||||
private String packetBarCode; |
||||
/** |
||||
* 扫描状态;(1=未装车,2=扫描,3=确认) |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("扫描状态;(1=未装车,2=扫描,3=确认)") |
||||
private Integer scanStatus; |
||||
/** |
||||
* 确认时间 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("确认时间") |
||||
private Date confirmTime; |
||||
/** |
||||
* 扫描时间 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("扫描时间") |
||||
private Date scanTime; |
||||
|
||||
/** |
||||
* 是否齐套;(1未齐套,2齐套) |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("是否齐套;(1未齐套,2齐套)") |
||||
private Integer kitting; |
||||
/** |
||||
* 类型;(1卸车,2装车) |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("类型;(1卸车,2装车)") |
||||
private Integer type; |
||||
|
||||
/** |
||||
* 滞留操作人 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("滞留操作人") |
||||
private String detentionPerson; |
||||
|
||||
/** |
||||
* 卸货仓库id |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("卸货仓库id") |
||||
private Long unWarehouseId; |
||||
|
||||
/** |
||||
* 卸货仓库名称 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("卸货仓库名称") |
||||
private String unWarehouseName; |
||||
|
||||
/** |
||||
* 卸货人id |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("卸货人id") |
||||
private Long unAdministratorsId; |
||||
|
||||
/** |
||||
* 卸货人名称 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("卸货人名称") |
||||
private String unAdministratorsName; |
||||
|
||||
/** |
||||
* 补录;(1=正常,2=补录数据) |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("补录;(1=正常,2=补录数据)") |
||||
private Integer isInsert; |
||||
|
||||
/** |
||||
* 扫码状态;(1=无数据装车;2=有数据装车) |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("扫码状态;(1=无数据装车;2=有数据装车)") |
||||
private Integer scanState; |
||||
|
||||
/** |
||||
* 同步;(1=正常数据,2=无编码未同步,3=无编码已同步待绑定) |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("同步;(1=正常数据,2=无编码未同步,3=无编码已同步待绑定)") |
||||
private Integer scanSynchronous; |
||||
|
||||
/** |
||||
* 计划目的网点 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("计划目的网点") |
||||
private String planDestinationId; |
||||
|
||||
/** |
||||
* 备注信息 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("备注信息") |
||||
private String msg; |
||||
|
||||
/** |
||||
* 卸车时间 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("卸车时间") |
||||
private Date unloadTime; |
||||
|
||||
/** |
||||
* 订单表id |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("订单表id") |
||||
private Long orderId; |
||||
|
||||
/** |
||||
* 客户表id |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("客户表id") |
||||
private Long reservationId; |
||||
|
||||
/** |
||||
* 配送表id |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("配送表id") |
||||
private Long deliveryId; |
||||
|
||||
/** |
||||
* 装车数量 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("装车数量") |
||||
private Integer loadedNub; |
||||
|
||||
/** |
||||
* 包内数量 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("包内数量") |
||||
private Integer packageNub; |
||||
|
||||
|
||||
} |
@ -0,0 +1,111 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.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-26 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class DistributionSelfDeliveryExcel 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 reservationIds; |
||||
/** |
||||
* 车辆编号 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("车辆编号") |
||||
private String vehicleIds; |
||||
/** |
||||
* 司机负责人 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("司机负责人") |
||||
private String masterDriverId; |
||||
/** |
||||
* 配送司机 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("配送司机") |
||||
private String slaveDriverIds; |
||||
/** |
||||
* 预留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,112 @@
|
||||
/* |
||||
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions are met: |
||||
* |
||||
* Redistributions of source code must retain the above copyright notice, |
||||
* this list of conditions and the following disclaimer. |
||||
* Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in the |
||||
* documentation and/or other materials provided with the distribution. |
||||
* Neither the name of the dreamlu.net developer nor the names of its |
||||
* contributors may be used to endorse or promote products derived from |
||||
* this software without specific prior written permission. |
||||
* Author: Chill 庄骞 (smallchill@163.com) |
||||
*/ |
||||
package com.logpm.distribution.excel; |
||||
|
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.util.Date; |
||||
import java.math.BigDecimal; |
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||
import com.alibaba.excel.annotation.write.style.ContentRowHeight; |
||||
import com.alibaba.excel.annotation.write.style.HeadRowHeight; |
||||
import java.io.Serializable; |
||||
|
||||
|
||||
/** |
||||
* 外协配送信息列表 Excel实体类 |
||||
* |
||||
* @author TJJ |
||||
* @since 2023-06-26 |
||||
*/ |
||||
@Data |
||||
@ColumnWidth(25) |
||||
@HeadRowHeight(20) |
||||
@ContentRowHeight(18) |
||||
public class DistributionTripartiteDeliveryExcel 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 driverName; |
||||
/** |
||||
* 司机电话 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("司机电话") |
||||
private String driverPhone; |
||||
/** |
||||
* 车辆车牌 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("车辆车牌") |
||||
private String vehicleNum; |
||||
/** |
||||
* 配送费用 |
||||
*/ |
||||
@ColumnWidth(20) |
||||
@ExcelProperty("配送费用") |
||||
private BigDecimal deliveryFee; |
||||
/** |
||||
* 预留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,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.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.DistributionLoadscanEntity; |
||||
import com.logpm.distribution.service.IDistributionLoadscanService; |
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
import springfox.documentation.annotations.ApiIgnore; |
||||
|
||||
/** |
||||
* 装车扫描表 Feign实现类 |
||||
* |
||||
* @author lmy |
||||
* @since 2023-06-27 |
||||
*/ |
||||
@ApiIgnore() |
||||
@RestController |
||||
@AllArgsConstructor |
||||
public class DistributionLoadscanClient implements IDistributionLoadscanClient { |
||||
|
||||
private final IDistributionLoadscanService distributionLoadscanService; |
||||
|
||||
@Override |
||||
@GetMapping(TOP) |
||||
public BladePage<DistributionLoadscanEntity> top(Integer current, Integer size) { |
||||
Query query = new Query(); |
||||
query.setCurrent(current); |
||||
query.setSize(size); |
||||
IPage<DistributionLoadscanEntity> page = distributionLoadscanService.page(Condition.getPage(query)); |
||||
return BladePage.of(page); |
||||
} |
||||
|
||||
} |
@ -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.distribution.mapper; |
||||
|
||||
import com.logpm.distribution.entity.DistributionLoadscanEntity; |
||||
import com.logpm.distribution.vo.DistributionLoadscanVO; |
||||
import com.logpm.distribution.excel.DistributionLoadscanExcel; |
||||
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-27 |
||||
*/ |
||||
public interface DistributionLoadscanMapper extends BaseMapper<DistributionLoadscanEntity> { |
||||
|
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param distributionLoadscan |
||||
* @return |
||||
*/ |
||||
List<DistributionLoadscanVO> selectDistributionLoadscanPage(IPage page, DistributionLoadscanVO distributionLoadscan); |
||||
|
||||
|
||||
/** |
||||
* 获取导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<DistributionLoadscanExcel> exportDistributionLoadscan(@Param("ew") Wrapper<DistributionLoadscanEntity> queryWrapper); |
||||
/** |
||||
* 装车扫描修改状态 |
||||
* |
||||
* @return |
||||
*/ |
||||
Integer updateByPackageId(Long id); |
||||
} |
@ -0,0 +1,173 @@
|
||||
<?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.DistributionLoadscanMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="distributionLoadscanResultMap" type="com.logpm.distribution.entity.DistributionLoadscanEntity"> |
||||
<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="id" property="id"/> |
||||
<result column="reserve2" property="reserve2"/> |
||||
<result column="tenant_id" property="tenantId"/> |
||||
<result column="reserve3" property="reserve3"/> |
||||
<result column="create_user" property="createUser"/> |
||||
<result column="reserve4" property="reserve4"/> |
||||
<result column="create_time" property="createTime"/> |
||||
<result column="reserve5" property="reserve5"/> |
||||
<result column="update_user" property="updateUser"/> |
||||
<result column="scan_type" property="scanType"/> |
||||
<result column="update_time" property="updateTime"/> |
||||
<result column="tray_id" property="trayId"/> |
||||
<result column="status" property="status"/> |
||||
<result column="brand_id" property="brandId"/> |
||||
<result column="is_deleted" property="isDeleted"/> |
||||
<result column="brand_name" property="brandName"/> |
||||
<result column="create_dept" property="createDept"/> |
||||
<result column="tray_no" property="trayNo"/> |
||||
<result column="reserve1" property="reserve1"/> |
||||
<result column="train_number" property="trainNumber"/> |
||||
<result column="vehicle_id" property="vehicleId"/> |
||||
<result column="reserve3" property="reserve3"/> |
||||
<result column="driver_id" property="driverId"/> |
||||
<result column="reserve4" property="reserve4"/> |
||||
<result column="vehicle_name" property="vehicleName"/> |
||||
<result column="reserve5" property="reserve5"/> |
||||
<result column="driver_name" property="driverName"/> |
||||
<result column="scan_type" property="scanType"/> |
||||
<result column="warehouse_id" property="warehouseId"/> |
||||
<result column="tray_id" property="trayId"/> |
||||
<result column="warehouse_name" property="warehouseName"/> |
||||
<result column="brand_id" property="brandId"/> |
||||
<result column="package_id" property="packageId"/> |
||||
<result column="brand_name" property="brandName"/> |
||||
<result column="packet_bar_code" property="packetBarCode"/> |
||||
<result column="tray_no" property="trayNo"/> |
||||
<result column="scan_status" property="scanStatus"/> |
||||
<result column="train_number" property="trainNumber"/> |
||||
<result column="confirm_time" property="confirmTime"/> |
||||
<result column="id" property="id"/> |
||||
<result column="vehicle_id" property="vehicleId"/> |
||||
<result column="scan_time" property="scanTime"/> |
||||
<result column="tenant_id" property="tenantId"/> |
||||
<result column="driver_id" property="driverId"/> |
||||
<result column="kitting" property="kitting"/> |
||||
<result column="create_user" property="createUser"/> |
||||
<result column="vehicle_name" property="vehicleName"/> |
||||
<result column="type" property="type"/> |
||||
<result column="create_time" property="createTime"/> |
||||
<result column="driver_name" property="driverName"/> |
||||
<result column="detention_person" property="detentionPerson"/> |
||||
<result column="update_user" property="updateUser"/> |
||||
<result column="warehouse_id" property="warehouseId"/> |
||||
<result column="un_warehouse_id" property="unWarehouseId"/> |
||||
<result column="update_time" property="updateTime"/> |
||||
<result column="warehouse_name" property="warehouseName"/> |
||||
<result column="un_warehouse_name" property="unWarehouseName"/> |
||||
<result column="status" property="status"/> |
||||
<result column="package_id" property="packageId"/> |
||||
<result column="un_administrators_id" property="unAdministratorsId"/> |
||||
<result column="is_deleted" property="isDeleted"/> |
||||
<result column="packet_bar_code" property="packetBarCode"/> |
||||
<result column="un_administrators_name" property="unAdministratorsName"/> |
||||
<result column="create_dept" property="createDept"/> |
||||
<result column="scan_status" property="scanStatus"/> |
||||
<result column="is_insert" property="isInsert"/> |
||||
<result column="reserve1" property="reserve1"/> |
||||
<result column="confirm_time" property="confirmTime"/> |
||||
<result column="scan_state" property="scanState"/> |
||||
<result column="scan_time" property="scanTime"/> |
||||
<result column="scan_synchronous" property="scanSynchronous"/> |
||||
<result column="reserve3" property="reserve3"/> |
||||
<result column="kitting" property="kitting"/> |
||||
<result column="plan_destination_id" property="planDestinationId"/> |
||||
<result column="reserve4" property="reserve4"/> |
||||
<result column="type" property="type"/> |
||||
<result column="msg" property="msg"/> |
||||
<result column="reserve5" property="reserve5"/> |
||||
<result column="detention_person" property="detentionPerson"/> |
||||
<result column="unload_time" property="unloadTime"/> |
||||
<result column="scan_type" property="scanType"/> |
||||
<result column="un_warehouse_id" property="unWarehouseId"/> |
||||
<result column="order_id" property="orderId"/> |
||||
<result column="tray_id" property="trayId"/> |
||||
<result column="un_warehouse_name" property="unWarehouseName"/> |
||||
<result column="reservation_id" property="reservationId"/> |
||||
<result column="brand_id" property="brandId"/> |
||||
<result column="un_administrators_id" property="unAdministratorsId"/> |
||||
<result column="delivery_id" property="deliveryId"/> |
||||
<result column="brand_name" property="brandName"/> |
||||
<result column="un_administrators_name" property="unAdministratorsName"/> |
||||
<result column="loaded_nub" property="loadedNub"/> |
||||
<result column="tray_no" property="trayNo"/> |
||||
<result column="is_insert" property="isInsert"/> |
||||
<result column="package_nub" property="packageNub"/> |
||||
<result column="train_number" property="trainNumber"/> |
||||
<result column="scan_state" property="scanState"/> |
||||
<result column="vehicle_id" property="vehicleId"/> |
||||
<result column="scan_synchronous" property="scanSynchronous"/> |
||||
<result column="driver_id" property="driverId"/> |
||||
<result column="plan_destination_id" property="planDestinationId"/> |
||||
<result column="vehicle_name" property="vehicleName"/> |
||||
<result column="msg" property="msg"/> |
||||
<result column="driver_name" property="driverName"/> |
||||
<result column="unload_time" property="unloadTime"/> |
||||
<result column="warehouse_id" property="warehouseId"/> |
||||
<result column="order_id" property="orderId"/> |
||||
<result column="warehouse_name" property="warehouseName"/> |
||||
<result column="reservation_id" property="reservationId"/> |
||||
<result column="package_id" property="packageId"/> |
||||
<result column="delivery_id" property="deliveryId"/> |
||||
<result column="packet_bar_code" property="packetBarCode"/> |
||||
<result column="loaded_nub" property="loadedNub"/> |
||||
<result column="scan_status" property="scanStatus"/> |
||||
<result column="package_nub" property="packageNub"/> |
||||
<result column="confirm_time" property="confirmTime"/> |
||||
<result column="scan_time" property="scanTime"/> |
||||
<result column="kitting" property="kitting"/> |
||||
<result column="type" property="type"/> |
||||
<result column="detention_person" property="detentionPerson"/> |
||||
<result column="un_warehouse_id" property="unWarehouseId"/> |
||||
<result column="un_warehouse_name" property="unWarehouseName"/> |
||||
<result column="un_administrators_id" property="unAdministratorsId"/> |
||||
<result column="un_administrators_name" property="unAdministratorsName"/> |
||||
<result column="is_insert" property="isInsert"/> |
||||
<result column="scan_state" property="scanState"/> |
||||
<result column="scan_synchronous" property="scanSynchronous"/> |
||||
<result column="plan_destination_id" property="planDestinationId"/> |
||||
<result column="msg" property="msg"/> |
||||
<result column="unload_time" property="unloadTime"/> |
||||
<result column="order_id" property="orderId"/> |
||||
<result column="reservation_id" property="reservationId"/> |
||||
<result column="delivery_id" property="deliveryId"/> |
||||
<result column="loaded_nub" property="loadedNub"/> |
||||
<result column="package_nub" property="packageNub"/> |
||||
</resultMap> |
||||
<update id="updateByPackageId"> |
||||
UPDATE logpm_distribution_loadscan |
||||
SET scan_status = 2, |
||||
loaded_nub = |
||||
CASE |
||||
WHEN ( loaded_nub + 1 ) > package_nub THEN |
||||
package_nub ELSE ( loaded_nub + 1 ) |
||||
END where package_id = #{id} |
||||
</update> |
||||
|
||||
|
||||
<select id="selectDistributionLoadscanPage" resultMap="distributionLoadscanResultMap"> |
||||
select * from logpm_distribution_loadscan where is_deleted = 0 |
||||
</select> |
||||
|
||||
|
||||
<select id="exportDistributionLoadscan" resultType="com.logpm.distribution.excel.DistributionLoadscanExcel"> |
||||
SELECT * FROM logpm_distribution_loadscan ${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.distribution.mapper; |
||||
|
||||
import com.logpm.distribution.entity.DistributionSelfDeliveryEntity; |
||||
import com.logpm.distribution.vo.DistributionSelfDeliveryVO; |
||||
import com.logpm.distribution.excel.DistributionSelfDeliveryExcel; |
||||
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 TJJ |
||||
* @since 2023-06-26 |
||||
*/ |
||||
public interface DistributionSelfDeliveryMapper extends BaseMapper<DistributionSelfDeliveryEntity> { |
||||
|
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param distributionSelfDelivery |
||||
* @return |
||||
*/ |
||||
List<DistributionSelfDeliveryVO> selectDistributionSelfDeliveryPage(IPage page, DistributionSelfDeliveryVO distributionSelfDelivery); |
||||
|
||||
|
||||
/** |
||||
* 获取导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<DistributionSelfDeliveryExcel> exportDistributionSelfDelivery(@Param("ew") Wrapper<DistributionSelfDeliveryEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
||||
<mapper namespace="com.logpm.distribution.mapper.DistributionSelfDeliveryMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="distributionSelfDeliveryResultMap" type="com.logpm.distribution.entity.DistributionSelfDeliveryEntity"> |
||||
<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="reservation_ids" property="reservationIds"/> |
||||
<result column="vehicle_ids" property="vehicleIds"/> |
||||
<result column="master_driver_id" property="masterDriverId"/> |
||||
<result column="slave_driver_ids" property="slaveDriverIds"/> |
||||
<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="selectDistributionSelfDeliveryPage" resultMap="distributionSelfDeliveryResultMap"> |
||||
select * from logpm_distribution_self_delivery where is_deleted = 0 |
||||
</select> |
||||
|
||||
|
||||
<select id="exportDistributionSelfDelivery" resultType="com.logpm.distribution.excel.DistributionSelfDeliveryExcel"> |
||||
SELECT * FROM logpm_distribution_self_delivery ${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.distribution.mapper; |
||||
|
||||
import com.logpm.distribution.entity.DistributionTripartiteDeliveryEntity; |
||||
import com.logpm.distribution.vo.DistributionTripartiteDeliveryVO; |
||||
import com.logpm.distribution.excel.DistributionTripartiteDeliveryExcel; |
||||
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 TJJ |
||||
* @since 2023-06-26 |
||||
*/ |
||||
public interface DistributionTripartiteDeliveryMapper extends BaseMapper<DistributionTripartiteDeliveryEntity> { |
||||
|
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param distributionTripartiteDelivery |
||||
* @return |
||||
*/ |
||||
List<DistributionTripartiteDeliveryVO> selectDistributionTripartiteDeliveryPage(IPage page, DistributionTripartiteDeliveryVO distributionTripartiteDelivery); |
||||
|
||||
|
||||
/** |
||||
* 获取导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<DistributionTripartiteDeliveryExcel> exportDistributionTripartiteDelivery(@Param("ew") Wrapper<DistributionTripartiteDeliveryEntity> queryWrapper); |
||||
|
||||
} |
@ -0,0 +1,38 @@
|
||||
<?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.DistributionTripartiteDeliveryMapper"> |
||||
|
||||
<!-- 通用查询映射结果 --> |
||||
<resultMap id="distributionTripartiteDeliveryResultMap" type="com.logpm.distribution.entity.DistributionTripartiteDeliveryEntity"> |
||||
<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="driver_name" property="driverName"/> |
||||
<result column="driver_phone" property="driverPhone"/> |
||||
<result column="vehicle_num" property="vehicleNum"/> |
||||
<result column="delivery_fee" property="deliveryFee"/> |
||||
<result column="reservation_ids" property="reservationIds"/> |
||||
<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="selectDistributionTripartiteDeliveryPage" resultMap="distributionTripartiteDeliveryResultMap"> |
||||
select * from logpm_distribution_tripartite_delivery where is_deleted = 0 |
||||
</select> |
||||
|
||||
|
||||
<select id="exportDistributionTripartiteDelivery" resultType="com.logpm.distribution.excel.DistributionTripartiteDeliveryExcel"> |
||||
SELECT * FROM logpm_distribution_tripartite_delivery ${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.distribution.service; |
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
||||
import com.logpm.distribution.entity.DistributionLoadscanEntity; |
||||
import com.logpm.distribution.vo.DistributionLoadscanVO; |
||||
import com.logpm.distribution.excel.DistributionLoadscanExcel; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 装车扫描表 服务类 |
||||
* |
||||
* @author lmy |
||||
* @since 2023-06-27 |
||||
*/ |
||||
public interface IDistributionLoadscanService extends BaseService<DistributionLoadscanEntity> { |
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param distributionLoadscan |
||||
* @return |
||||
*/ |
||||
IPage<DistributionLoadscanVO> selectDistributionLoadscanPage(IPage<DistributionLoadscanVO> page, DistributionLoadscanVO distributionLoadscan); |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<DistributionLoadscanExcel> exportDistributionLoadscan(Wrapper<DistributionLoadscanEntity> queryWrapper); |
||||
|
||||
} |
@ -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.DistributionSelfDeliveryEntity; |
||||
import com.logpm.distribution.vo.DistributionSelfDeliveryVO; |
||||
import com.logpm.distribution.excel.DistributionSelfDeliveryExcel; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 自主配送信息列表 服务类 |
||||
* |
||||
* @author TJJ |
||||
* @since 2023-06-26 |
||||
*/ |
||||
public interface IDistributionSelfDeliveryService extends BaseService<DistributionSelfDeliveryEntity> { |
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param distributionSelfDelivery |
||||
* @return |
||||
*/ |
||||
IPage<DistributionSelfDeliveryVO> selectDistributionSelfDeliveryPage(IPage<DistributionSelfDeliveryVO> page, DistributionSelfDeliveryVO distributionSelfDelivery); |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<DistributionSelfDeliveryExcel> exportDistributionSelfDelivery(Wrapper<DistributionSelfDeliveryEntity> queryWrapper); |
||||
|
||||
} |
@ -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.DistributionTripartiteDeliveryEntity; |
||||
import com.logpm.distribution.vo.DistributionTripartiteDeliveryVO; |
||||
import com.logpm.distribution.excel.DistributionTripartiteDeliveryExcel; |
||||
import com.baomidou.mybatisplus.core.metadata.IPage; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
import java.util.List; |
||||
|
||||
/** |
||||
* 外协配送信息列表 服务类 |
||||
* |
||||
* @author TJJ |
||||
* @since 2023-06-26 |
||||
*/ |
||||
public interface IDistributionTripartiteDeliveryService extends BaseService<DistributionTripartiteDeliveryEntity> { |
||||
/** |
||||
* 自定义分页 |
||||
* |
||||
* @param page |
||||
* @param distributionTripartiteDelivery |
||||
* @return |
||||
*/ |
||||
IPage<DistributionTripartiteDeliveryVO> selectDistributionTripartiteDeliveryPage(IPage<DistributionTripartiteDeliveryVO> page, DistributionTripartiteDeliveryVO distributionTripartiteDelivery); |
||||
|
||||
|
||||
/** |
||||
* 导出数据 |
||||
* |
||||
* @param queryWrapper |
||||
* @return |
||||
*/ |
||||
List<DistributionTripartiteDeliveryExcel> exportDistributionTripartiteDelivery(Wrapper<DistributionTripartiteDeliveryEntity> 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.DistributionLoadscanEntity; |
||||
import com.logpm.distribution.vo.DistributionLoadscanVO; |
||||
import com.logpm.distribution.excel.DistributionLoadscanExcel; |
||||
import com.logpm.distribution.mapper.DistributionLoadscanMapper; |
||||
import com.logpm.distribution.service.IDistributionLoadscanService; |
||||
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-27 |
||||
*/ |
||||
@Service |
||||
public class DistributionLoadscanServiceImpl extends BaseServiceImpl<DistributionLoadscanMapper, DistributionLoadscanEntity> implements IDistributionLoadscanService { |
||||
|
||||
@Override |
||||
public IPage<DistributionLoadscanVO> selectDistributionLoadscanPage(IPage<DistributionLoadscanVO> page, DistributionLoadscanVO distributionLoadscan) { |
||||
return page.setRecords(baseMapper.selectDistributionLoadscanPage(page, distributionLoadscan)); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public List<DistributionLoadscanExcel> exportDistributionLoadscan(Wrapper<DistributionLoadscanEntity> queryWrapper) { |
||||
List<DistributionLoadscanExcel> distributionLoadscanList = baseMapper.exportDistributionLoadscan(queryWrapper); |
||||
//distributionLoadscanList.forEach(distributionLoadscan -> {
|
||||
// distributionLoadscan.setTypeName(DictCache.getValue(DictEnum.YES_NO, DistributionLoadscan.getType()));
|
||||
//});
|
||||
return distributionLoadscanList; |
||||
} |
||||
|
||||
} |
@ -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.DistributionSelfDeliveryEntity; |
||||
import com.logpm.distribution.vo.DistributionSelfDeliveryVO; |
||||
import com.logpm.distribution.excel.DistributionSelfDeliveryExcel; |
||||
import com.logpm.distribution.mapper.DistributionSelfDeliveryMapper; |
||||
import com.logpm.distribution.service.IDistributionSelfDeliveryService; |
||||
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-26 |
||||
*/ |
||||
@Service |
||||
public class DistributionSelfDeliveryServiceImpl extends BaseServiceImpl<DistributionSelfDeliveryMapper, DistributionSelfDeliveryEntity> implements IDistributionSelfDeliveryService { |
||||
|
||||
@Override |
||||
public IPage<DistributionSelfDeliveryVO> selectDistributionSelfDeliveryPage(IPage<DistributionSelfDeliveryVO> page, DistributionSelfDeliveryVO distributionSelfDelivery) { |
||||
return page.setRecords(baseMapper.selectDistributionSelfDeliveryPage(page, distributionSelfDelivery)); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public List<DistributionSelfDeliveryExcel> exportDistributionSelfDelivery(Wrapper<DistributionSelfDeliveryEntity> queryWrapper) { |
||||
List<DistributionSelfDeliveryExcel> distributionSelfDeliveryList = baseMapper.exportDistributionSelfDelivery(queryWrapper); |
||||
//distributionSelfDeliveryList.forEach(distributionSelfDelivery -> {
|
||||
// distributionSelfDelivery.setTypeName(DictCache.getValue(DictEnum.YES_NO, DistributionSelfDelivery.getType()));
|
||||
//});
|
||||
return distributionSelfDeliveryList; |
||||
} |
||||
|
||||
} |
@ -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.DistributionTripartiteDeliveryEntity; |
||||
import com.logpm.distribution.vo.DistributionTripartiteDeliveryVO; |
||||
import com.logpm.distribution.excel.DistributionTripartiteDeliveryExcel; |
||||
import com.logpm.distribution.mapper.DistributionTripartiteDeliveryMapper; |
||||
import com.logpm.distribution.service.IDistributionTripartiteDeliveryService; |
||||
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-26 |
||||
*/ |
||||
@Service |
||||
public class DistributionTripartiteDeliveryServiceImpl extends BaseServiceImpl<DistributionTripartiteDeliveryMapper, DistributionTripartiteDeliveryEntity> implements IDistributionTripartiteDeliveryService { |
||||
|
||||
@Override |
||||
public IPage<DistributionTripartiteDeliveryVO> selectDistributionTripartiteDeliveryPage(IPage<DistributionTripartiteDeliveryVO> page, DistributionTripartiteDeliveryVO distributionTripartiteDelivery) { |
||||
return page.setRecords(baseMapper.selectDistributionTripartiteDeliveryPage(page, distributionTripartiteDelivery)); |
||||
} |
||||
|
||||
|
||||
@Override |
||||
public List<DistributionTripartiteDeliveryExcel> exportDistributionTripartiteDelivery(Wrapper<DistributionTripartiteDeliveryEntity> queryWrapper) { |
||||
List<DistributionTripartiteDeliveryExcel> distributionTripartiteDeliveryList = baseMapper.exportDistributionTripartiteDelivery(queryWrapper); |
||||
//distributionTripartiteDeliveryList.forEach(distributionTripartiteDelivery -> {
|
||||
// distributionTripartiteDelivery.setTypeName(DictCache.getValue(DictEnum.YES_NO, DistributionTripartiteDelivery.getType()));
|
||||
//});
|
||||
return distributionTripartiteDeliveryList; |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue