22 changed files with 940 additions and 124 deletions
@ -0,0 +1,17 @@
|
||||
package com.logpm.trunkline.vo; |
||||
|
||||
import lombok.Data; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Date; |
||||
|
||||
@Data |
||||
public class CarsLoadScanInfoVO implements Serializable { |
||||
|
||||
private String scanCode; |
||||
private String loadCode; |
||||
private String scanStatus; |
||||
private Date createTime; |
||||
private Date signTime; |
||||
|
||||
} |
@ -0,0 +1,84 @@
|
||||
package com.logpm.warehouse.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import org.springblade.core.mp.base.BaseEntity; |
||||
|
||||
import java.math.BigDecimal; |
||||
|
||||
@Data |
||||
@ApiModel(value = "运单作废明细",description = "") |
||||
@TableName("logpm_warehouse_waybill_detail_abolish") |
||||
public class WarehouseWayBillDetailAbolish extends BaseEntity { |
||||
|
||||
/** 运单号 */ |
||||
@ApiModelProperty(name = "运单号",notes = "") |
||||
private String waybillNo; |
||||
|
||||
/** 运单号id */ |
||||
@ApiModelProperty(name = "运单id",notes = "") |
||||
private Long waybillId; |
||||
|
||||
/** 品名 */ |
||||
@ApiModelProperty(name = "品名",notes = "") |
||||
private String productName; |
||||
|
||||
/** 品名id */ |
||||
@ApiModelProperty(name = "品名id",notes = "") |
||||
private Long productId; |
||||
|
||||
/** 数量 */ |
||||
@ApiModelProperty(name = "数量",notes = "") |
||||
private Integer num; |
||||
|
||||
/** 体积 */ |
||||
@ApiModelProperty(name = "体积",notes = "") |
||||
private BigDecimal volume; |
||||
|
||||
/** 重量 */ |
||||
@ApiModelProperty(name = "重量",notes = "") |
||||
private BigDecimal weight; |
||||
|
||||
/** 单价 */ |
||||
@ApiModelProperty(name = "单价",notes = "") |
||||
private BigDecimal price; |
||||
|
||||
/** 小计运费 */ |
||||
@ApiModelProperty(name = "小计运费",notes = "") |
||||
private BigDecimal subtotalFreight; |
||||
|
||||
/** 计价方式 1件 2方 3公斤 */ |
||||
@ApiModelProperty(name = "实际运费计价方式 1件 2方 3公斤",notes = "") |
||||
private Integer chargeType; |
||||
|
||||
/** 单价 */ |
||||
@ApiModelProperty(name = "配送单价",notes = "") |
||||
private BigDecimal deliveryPrice; |
||||
|
||||
/** 小计运费 */ |
||||
@ApiModelProperty(name = "小计配送费用",notes = "") |
||||
private BigDecimal subtotalDeliveryFee; |
||||
|
||||
/** 单价 */ |
||||
@ApiModelProperty(name = "提货单价",notes = "") |
||||
private BigDecimal pickupPrice; |
||||
|
||||
/** 单价 */ |
||||
@ApiModelProperty(name = "运费单价",notes = "") |
||||
private BigDecimal freightPrice; |
||||
|
||||
@ApiModelProperty(name = "系统运费计价方式 1件 2方 3公斤",notes = "") |
||||
private Integer systemChargeType; |
||||
|
||||
@ApiModelProperty(name = "系统配送计价方式 1件 2方 3公斤",notes = "") |
||||
private Integer systemDeliveryChargeType; |
||||
|
||||
@ApiModelProperty(name = "系统提货计价方式 1件 2方 3公斤",notes = "") |
||||
private Integer systemPickupChargeType; |
||||
|
||||
@ApiModelProperty(name = "系统仓库计价方式 1件 2方 3公斤",notes = "") |
||||
private Integer systemWarehouseChargeType; |
||||
|
||||
} |
@ -0,0 +1,553 @@
|
||||
/* |
||||
* 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.warehouse.entity; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField; |
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import com.fasterxml.jackson.annotation.JsonProperty; |
||||
import io.swagger.annotations.ApiModel; |
||||
import io.swagger.annotations.ApiModelProperty; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
|
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* 运单表 实体类 |
||||
* |
||||
* @author zhy |
||||
* @since 2023-07-10 |
||||
*/ |
||||
@Data |
||||
@TableName("logpm_warehouse_waybill_abolish") |
||||
@ApiModel(value = "WarehouseWaybillAbolish对象", description = "运单作废表") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class WarehouseWaybillAbolishEntity extends TenantEntity { |
||||
|
||||
/** |
||||
* 运单号 |
||||
*/ |
||||
@ApiModelProperty(value = "运单号") |
||||
private String waybillNo; |
||||
/** |
||||
* 订单自编号 |
||||
*/ |
||||
@ApiModelProperty(value = "订单自编号") |
||||
private String orderNo; |
||||
/** |
||||
* 目的仓 |
||||
*/ |
||||
@ApiModelProperty(value = "目的仓") |
||||
private String destinationWarehouseName; |
||||
/** |
||||
* 发站仓 |
||||
*/ |
||||
@ApiModelProperty(value = "发站仓") |
||||
private String departureWarehouseName; |
||||
/** |
||||
* 客户车次 |
||||
*/ |
||||
@ApiModelProperty(value = "客户车次") |
||||
private String customerTrain; |
||||
/** |
||||
* 品牌 |
||||
*/ |
||||
@ApiModelProperty(value = "品牌id") |
||||
private Long brandId; |
||||
|
||||
/** |
||||
* 品牌 |
||||
*/ |
||||
@ApiModelProperty(value = "品牌") |
||||
private String brand; |
||||
|
||||
/** |
||||
* 发货单位 |
||||
*/ |
||||
@ApiModelProperty(value = "发货单位") |
||||
private String shipper; |
||||
/** |
||||
* 发货人 |
||||
*/ |
||||
@ApiModelProperty(value = "发货人") |
||||
private String shipperName; |
||||
/** |
||||
* 发货方手机号 |
||||
*/ |
||||
@ApiModelProperty(value = "发货方手机号") |
||||
private String shipperMobile; |
||||
/** |
||||
* 发货方地址 |
||||
*/ |
||||
@ApiModelProperty(value = "发货方地址") |
||||
private String shipperAddress; |
||||
/** |
||||
* 收货单位 |
||||
*/ |
||||
@ApiModelProperty(value = "收货单位") |
||||
private String consignee; |
||||
/** |
||||
* 收货人 |
||||
*/ |
||||
@ApiModelProperty(value = "收货人") |
||||
private String consigneeName; |
||||
/** |
||||
* 收货方手机号 |
||||
*/ |
||||
@ApiModelProperty(value = "收货方手机号") |
||||
private String consigneeMobile; |
||||
/** |
||||
* 收货方地址 |
||||
*/ |
||||
@ApiModelProperty(value = "收货方地址") |
||||
private String consigneeAddress; |
||||
/** |
||||
* 到站 |
||||
*/ |
||||
@ApiModelProperty(value = "到站") |
||||
private String destination; |
||||
/** |
||||
* 货物名称 |
||||
*/ |
||||
@ApiModelProperty(value = "货物名称") |
||||
private String goodsName; |
||||
/** |
||||
* 总数 |
||||
*/ |
||||
@ApiModelProperty(value = "总数") |
||||
private Integer totalCount; |
||||
/** |
||||
* 在库数 |
||||
*/ |
||||
@ApiModelProperty(value = "在库数") |
||||
private Integer stockCount; |
||||
/** |
||||
* 总重量 |
||||
*/ |
||||
@ApiModelProperty(value = "总重量") |
||||
private BigDecimal totalWeight; |
||||
/** |
||||
* 在库重量 |
||||
*/ |
||||
@ApiModelProperty(value = "在库重量") |
||||
private BigDecimal stockWeight; |
||||
/** |
||||
* 总体积 |
||||
*/ |
||||
@ApiModelProperty(value = "总体积") |
||||
private BigDecimal totalVolume; |
||||
/** |
||||
* 在库体积 |
||||
*/ |
||||
@ApiModelProperty(value = "在库体积") |
||||
private BigDecimal stockVolume; |
||||
/** |
||||
* 送货方式 |
||||
*/ |
||||
@ApiModelProperty(value = "送货方式") |
||||
private Integer deliveryMethod; |
||||
|
||||
@TableField(exist = false) |
||||
private String deliveryMethodStr; |
||||
|
||||
@TableField(exist = false) |
||||
private String urgencyStr; |
||||
|
||||
/** |
||||
* 回单数 |
||||
*/ |
||||
@ApiModelProperty(value = "回单数") |
||||
private Integer receiptCount; |
||||
/** |
||||
* 回单要求 |
||||
*/ |
||||
@ApiModelProperty(value = "回单要求") |
||||
private String receiptRequirement; |
||||
/** |
||||
* 经办人 |
||||
*/ |
||||
@ApiModelProperty(value = "经办人") |
||||
private String agent; |
||||
/** |
||||
* 经办人id |
||||
*/ |
||||
@ApiModelProperty(value = "经办人id") |
||||
private Long agentId; |
||||
/** |
||||
* 收货单位id |
||||
*/ |
||||
@ApiModelProperty(value = "收货单位id") |
||||
private Long consigneeId; |
||||
/** |
||||
* 发货单位id |
||||
*/ |
||||
@ApiModelProperty(value = "发货单位id") |
||||
private Long shipperId; |
||||
/** |
||||
* 发展仓id |
||||
*/ |
||||
@ApiModelProperty(value = "发展仓id") |
||||
private Long departureWarehouseId; |
||||
/** |
||||
* 目的仓id |
||||
*/ |
||||
@ApiModelProperty(value = "目的仓id") |
||||
private Long destinationWarehouseId; |
||||
/** |
||||
* 制单时间 |
||||
*/ |
||||
@ApiModelProperty(value = "制单时间") |
||||
private Date documentMakingTime; |
||||
/** |
||||
* 备注 |
||||
*/ |
||||
@ApiModelProperty(value = "备注") |
||||
private String remark; |
||||
/** |
||||
* 批次号 |
||||
*/ |
||||
@ApiModelProperty(value = "批次号") |
||||
private String batchNo; |
||||
/** |
||||
* 服务类型 |
||||
*/ |
||||
@ApiModelProperty(value = "服务类型") |
||||
private Integer serviceType; |
||||
|
||||
/** |
||||
* 服务类型 |
||||
*/ |
||||
@TableField(exist = false) |
||||
private String serviceTypeStr; |
||||
/** |
||||
* 服务号 |
||||
*/ |
||||
@ApiModelProperty(value = "服务号") |
||||
private String serviceNo; |
||||
/** |
||||
* 冻结状态 |
||||
*/ |
||||
@ApiModelProperty(value = "冻结状态") |
||||
private Integer freezeStatus; |
||||
|
||||
@TableField(exist = false) |
||||
private String freezeStatusStr; |
||||
/** |
||||
* 预留1 |
||||
*/ |
||||
@ApiModelProperty(value = "预留1") |
||||
private String reserve1; |
||||
/** |
||||
* 预留2 |
||||
*/ |
||||
@ApiModelProperty(value = "预留2") |
||||
private String reserve2; |
||||
/** |
||||
* 预留3 |
||||
*/ |
||||
@ApiModelProperty(value = "预留3") |
||||
private String reserve3; |
||||
/** |
||||
* 预留4 |
||||
*/ |
||||
@ApiModelProperty(value = "预留4") |
||||
private String reserve4; |
||||
/** |
||||
* 预留5 |
||||
*/ |
||||
@ApiModelProperty(value = "预留5") |
||||
private String reserve5; |
||||
|
||||
|
||||
@ApiModelProperty(value = "运单状态") |
||||
private Integer stats; //运单状态 弃用
|
||||
|
||||
@TableField(exist = false) |
||||
private String statsStr; |
||||
|
||||
//-------------------2023-07-28----------------
|
||||
|
||||
@ApiModelProperty(value = "到付") |
||||
private BigDecimal collectPay;//到付
|
||||
|
||||
@ApiModelProperty(value = "已收到付") |
||||
private BigDecimal receivedCollectPay;//已收到付
|
||||
|
||||
@ApiModelProperty(value = "代收货款") |
||||
private BigDecimal replacePrice;//代收货款
|
||||
|
||||
@ApiModelProperty(value = "已收代收货款") |
||||
private BigDecimal receivedReplacePrice;//已收代收货款
|
||||
|
||||
@ApiModelProperty(value = "已收总金额") |
||||
private BigDecimal receivedTotalPrice;//已收总金额
|
||||
|
||||
@ApiModelProperty(value = "运单类型") |
||||
private Integer waybillType;//运单类型 1订制品 2零担
|
||||
|
||||
@ApiModelProperty(value = "收款状态 0未签收 1已签收") |
||||
private Integer receivedStatus;//收款状态 0未签收 1已签收
|
||||
|
||||
//--------------2023-11-18 干线新增字段
|
||||
/** |
||||
* 运费 |
||||
*/ |
||||
@ApiModelProperty(value = "运费") |
||||
private BigDecimal totalFreight;//运费
|
||||
/** |
||||
* 送货费 |
||||
*/ |
||||
@ApiModelProperty(value = "送货费") |
||||
private BigDecimal deliveryFee;//送货费
|
||||
/** |
||||
* 提货费 |
||||
*/ |
||||
@ApiModelProperty(value = "提货费") |
||||
private BigDecimal pickupFee;//提货费
|
||||
/** |
||||
* 仓库管理费 |
||||
*/ |
||||
@ApiModelProperty(value = "仓库管理费") |
||||
private BigDecimal warehouseManagementFee;//仓库管理费
|
||||
/** |
||||
* 仓储费 |
||||
*/ |
||||
@ApiModelProperty(value = "仓储费") |
||||
private BigDecimal storageFee;//仓储费
|
||||
|
||||
/** |
||||
* 仓储费 |
||||
*/ |
||||
@ApiModelProperty(value = "仓储分拣费") |
||||
private BigDecimal sortingFee;//仓储分拣费
|
||||
|
||||
/** |
||||
* 装卸费 |
||||
*/ |
||||
@ApiModelProperty(value = "仓库操作费") |
||||
private BigDecimal handlingFee;//仓库操作费
|
||||
/** |
||||
* 安装费 |
||||
*/ |
||||
@ApiModelProperty(value = "安装费") |
||||
private BigDecimal installFee;//安装费
|
||||
/** |
||||
* 其他费 |
||||
*/ |
||||
@ApiModelProperty(value = "其他费") |
||||
private BigDecimal otherFee;//其他费
|
||||
/** |
||||
* 保价费 |
||||
*/ |
||||
@ApiModelProperty(value = "保价费") |
||||
private BigDecimal insuranceFee;//保价费
|
||||
/** |
||||
* 申明价值 |
||||
*/ |
||||
@ApiModelProperty(value = "申明价值") |
||||
private BigDecimal claimingValue;//申明价值
|
||||
|
||||
/** |
||||
* 回扣 |
||||
*/ |
||||
@ApiModelProperty(value = "回扣") |
||||
private BigDecimal rebate;//回扣
|
||||
|
||||
/** |
||||
* 支付方式 1现金 2银行卡 3微信 4支付宝 5支票 6账本 |
||||
*/ |
||||
@ApiModelProperty(value = "支付方式 1现金 2银行卡 3微信 4支付宝 5支票 6账本") |
||||
private String payType;//支付方式 1现金 2银行卡 3微信 4支付宝 5支票 6账本
|
||||
/** |
||||
* 付款方式 1现付 2到付 3月结 4回付 5内部结算 6多笔付 |
||||
*/ |
||||
@ApiModelProperty(value = "付款方式 1现付 2到付 3月结 4回付 5内部结算 6多笔付") |
||||
private String payWay;//付款方式
|
||||
/** |
||||
* 现付金额 |
||||
*/ |
||||
@ApiModelProperty(value = "现付金额") |
||||
@JsonProperty("xPay") |
||||
private BigDecimal xPay;//现付金额
|
||||
/** |
||||
* 到付 |
||||
*/ |
||||
@ApiModelProperty(value = "到付") |
||||
@JsonProperty("dPay") |
||||
private BigDecimal dPay;//到付
|
||||
/** |
||||
* 月结 |
||||
*/ |
||||
@ApiModelProperty(value = "月结") |
||||
@JsonProperty("yPay") |
||||
private BigDecimal yPay;//月结
|
||||
/** |
||||
* 回付 |
||||
*/ |
||||
@ApiModelProperty(value = "回付") |
||||
@JsonProperty("hPay") |
||||
private BigDecimal hPay;//回付
|
||||
/** |
||||
* 三方操作费 |
||||
*/ |
||||
@ApiModelProperty(value = "三方操作费") |
||||
private BigDecimal thirdOperationFee;//三方操作费
|
||||
|
||||
/** |
||||
* 送货方式 1自提 2送货 3送货上门 4送货上门(有电梯) 5送货上门(无电梯) 6送货卸货 7送货安装 |
||||
*/ |
||||
@ApiModelProperty(value = "送货方式 1自提 2送货 3送货上门 4送货上门(有电梯) 5送货上门(无电梯) 6送货卸货 7送货安装") |
||||
private String deliveryWay;//送货方式 1自提 2送货 3送货上门 4送货上门(有电梯) 5送货上门(无电梯) 6送货卸货 7送货安装
|
||||
/** |
||||
* 紧急度 1正常 2急 3加急 4特急 |
||||
*/ |
||||
@ApiModelProperty(value = "紧急度 1正常 2急 3加急 4特急") |
||||
private String urgency;//紧急度 1正常 2急 3加急 4特急
|
||||
/** |
||||
* 回单方式 1签回单 2签原单 3打收条 4签信封 5签回单盖章 6 1份回单 7 2份回单 8 3份回单 9 4份回单 10 5份回单 |
||||
*/ |
||||
@ApiModelProperty(value = "回单方式 1签回单 2签原单 3打收条 4签信封 5签回单盖章 6 1份回单 7 2份回单 8 3份回单 9 4份回单 10 5份回单") |
||||
private String receipt;//回单方式(多选)
|
||||
/** |
||||
* 运输方式 1公路快运 2海运 3卡车航班 4空运 5普通汽班 6快递 |
||||
*/ |
||||
@ApiModelProperty(value = "运输方式 1公路快运 2海运 3卡车航班 4空运 5普通汽班 6快递") |
||||
private String transportType;//运输方式 1公路快运 2海运 3卡车航班 4空运 5普通汽班 6快递
|
||||
|
||||
/** |
||||
* 运单状态 0未入库 10部分入库 20已入库 |
||||
*/ |
||||
@ApiModelProperty(value = "运单状态") |
||||
private String waybillStatus;//运单状态 0未入库10部分入库20入库30部分中转40 中转50 目的仓部分到达60 目的仓到达70 配送部分装车80 配送装车90 部分签收100 已签收
|
||||
|
||||
@ApiModelProperty(value = "回单份数") |
||||
private Integer receiptNum; |
||||
|
||||
@ApiModelProperty(value = "到站编码") |
||||
private String destinationCode; |
||||
|
||||
@ApiModelProperty(value = "货号") |
||||
private String goodsCode; |
||||
|
||||
@ApiModelProperty(value = "审核人id") |
||||
private Long checkUserId; |
||||
@ApiModelProperty(value = "审核人名称") |
||||
private String checkUserName; |
||||
|
||||
@ApiModelProperty(value = "按件成本") |
||||
private BigDecimal costPiece; |
||||
|
||||
@ApiModelProperty(value = "按张逻辑成本") |
||||
private BigDecimal costZhang; |
||||
|
||||
@ApiModelProperty(value = "成本件数") |
||||
private Integer costNum; |
||||
|
||||
@ApiModelProperty(value = "发站") |
||||
private String departure; |
||||
|
||||
@ApiModelProperty(value = "发站编码") |
||||
private String departureCode; |
||||
|
||||
@ApiModelProperty(value = "商场编码") |
||||
private String dealerCode; |
||||
|
||||
@ApiModelProperty(value = "商场名称") |
||||
private String dealerName; |
||||
|
||||
@ApiModelProperty(value = "提货是否整车 0否 1是") |
||||
private Integer pickupCompleteOrNot; |
||||
|
||||
@ApiModelProperty(value = "干线是否整车 0否 1是") |
||||
private Integer trunklineCompleteOrNot; |
||||
|
||||
@ApiModelProperty(value = "干线车型 ") |
||||
private Long trunklineVehicleTypeId; |
||||
|
||||
@ApiModelProperty(value = "干线车型 ") |
||||
private String trunklineVehicleType; |
||||
|
||||
@ApiModelProperty(value = "提货车型 ") |
||||
private String pickupVehicleType; |
||||
|
||||
@ApiModelProperty(value = "作废状态 0否 1是 ") |
||||
private Integer abolishStatus; |
||||
|
||||
@ApiModelProperty(value = "作废人名称 ") |
||||
private String abolishUserName; |
||||
|
||||
@ApiModelProperty(value = "作废时间 ") |
||||
private Date abolishTime; |
||||
|
||||
@ApiModelProperty(value = "冻结人名称 ") |
||||
private String freezeUserName; |
||||
|
||||
@ApiModelProperty(value = "冻结时间 ") |
||||
private Date freezeTime; |
||||
|
||||
@ApiModelProperty(value = "提货件数 ") |
||||
private Integer billladingNum; |
||||
|
||||
@ApiModelProperty(value = "审核时间 ") |
||||
private Date checkTime; |
||||
|
||||
@ApiModelProperty(value = "回单状态 ") |
||||
private Integer returnStatus; |
||||
|
||||
@ApiModelProperty(value = "审核状态 ") |
||||
private Integer checkStatus; |
||||
|
||||
@ApiModelProperty(value = "更新状态 ") |
||||
private Integer updateStatus; |
||||
|
||||
@ApiModelProperty(value = "审核意见 ") |
||||
private String checkReson; |
||||
|
||||
@ApiModelProperty(value = "审核备注 ") |
||||
private String checkRemark; |
||||
|
||||
|
||||
@ApiModelProperty(value = "取消审核备注 ") |
||||
private String cancleCheckRemark; |
||||
|
||||
@ApiModelProperty(value = "取消审核人id") |
||||
private Long cancleCheckUserId; |
||||
@ApiModelProperty(value = "取消审核人名称") |
||||
private String cancleCheckUserName; |
||||
@ApiModelProperty(value = "取消审核时间 ") |
||||
private Date cancleCheckTime; |
||||
|
||||
|
||||
@ApiModelProperty(value = "签收件数 ") |
||||
private Integer signNum; |
||||
|
||||
@ApiModelProperty(value = "签收人") |
||||
private String signUserName; |
||||
@ApiModelProperty(value = "签收时间 ") |
||||
private Date signTime; |
||||
|
||||
@ApiModelProperty(value = "文员复核人") |
||||
private String signCheckUserName; |
||||
@ApiModelProperty(value = "文员复核时间 ") |
||||
private Date signCheckTime; |
||||
|
||||
|
||||
|
||||
|
||||
} |
@ -0,0 +1,24 @@
|
||||
package com.logpm.warehouse.feign; |
||||
|
||||
import com.logpm.warehouse.entity.WarehouseWaybillAbolishEntity; |
||||
import org.springblade.common.constant.ModuleNameConstant; |
||||
import org.springframework.cloud.openfeign.FeignClient; |
||||
import org.springframework.web.bind.annotation.PostMapping; |
||||
import org.springframework.web.bind.annotation.RequestBody; |
||||
|
||||
import java.util.List; |
||||
|
||||
@FeignClient( |
||||
value = ModuleNameConstant.APPLICATION_WAREHOUSE_NAME |
||||
) |
||||
public interface IWarehouseWaybillAbolishClient { |
||||
|
||||
String API_PREFIX = "/client12"; |
||||
String TOP = API_PREFIX + "/top"; |
||||
|
||||
@PostMapping(API_PREFIX) |
||||
void saveBatch(@RequestBody List<WarehouseWaybillAbolishEntity> waybillAbolishEntities); |
||||
|
||||
|
||||
|
||||
} |
@ -0,0 +1,24 @@
|
||||
package com.logpm.warehouse.feign; |
||||
|
||||
import com.logpm.warehouse.entity.WarehouseWayBillDetailAbolish; |
||||
import org.springblade.common.constant.ModuleNameConstant; |
||||
import org.springframework.cloud.openfeign.FeignClient; |
||||
import org.springframework.web.bind.annotation.PostMapping; |
||||
import org.springframework.web.bind.annotation.RequestBody; |
||||
|
||||
import java.util.List; |
||||
|
||||
@FeignClient( |
||||
value = ModuleNameConstant.APPLICATION_WAREHOUSE_NAME |
||||
) |
||||
public interface IWarehouseWaybillDetailAbolishClient { |
||||
|
||||
String API_PREFIX = "/waybillDetailAbolish"; |
||||
String TOP = API_PREFIX + "/top"; |
||||
|
||||
@PostMapping(API_PREFIX+"/saveBatch") |
||||
void saveBatch(@RequestBody List<WarehouseWayBillDetailAbolish> waybillDetailAbolishEntities); |
||||
|
||||
|
||||
|
||||
} |
@ -0,0 +1,22 @@
|
||||
package com.logpm.warehouse.feign; |
||||
|
||||
import com.logpm.warehouse.entity.WarehouseWaybillAbolishEntity; |
||||
import com.logpm.warehouse.service.IWarehouseWaybillAbolishService; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
import springfox.documentation.annotations.ApiIgnore; |
||||
|
||||
import java.util.List; |
||||
|
||||
@ApiIgnore() |
||||
@RestController |
||||
@AllArgsConstructor |
||||
public class WarehouseWaybillAbolishClient implements IWarehouseWaybillAbolishClient { |
||||
|
||||
private final IWarehouseWaybillAbolishService warehouseWaybillAbolishService; |
||||
|
||||
@Override |
||||
public void saveBatch(List<WarehouseWaybillAbolishEntity> waybillAbolishEntities) { |
||||
warehouseWaybillAbolishService.saveBatch(waybillAbolishEntities); |
||||
} |
||||
} |
@ -0,0 +1,22 @@
|
||||
package com.logpm.warehouse.feign; |
||||
|
||||
import com.logpm.warehouse.entity.WarehouseWayBillDetailAbolish; |
||||
import com.logpm.warehouse.service.IWarehouseWayBillDetailAbolishService; |
||||
import lombok.AllArgsConstructor; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
import springfox.documentation.annotations.ApiIgnore; |
||||
|
||||
import java.util.List; |
||||
|
||||
@ApiIgnore() |
||||
@RestController |
||||
@AllArgsConstructor |
||||
public class WarehouseWaybillDetailAbolishClient implements IWarehouseWaybillDetailAbolishClient { |
||||
|
||||
private final IWarehouseWayBillDetailAbolishService warehouseWaybillDetailAbolishService; |
||||
|
||||
@Override |
||||
public void saveBatch(List<WarehouseWayBillDetailAbolish> waybillDetailAbolishEntities) { |
||||
warehouseWaybillDetailAbolishService.saveBatch(waybillDetailAbolishEntities); |
||||
} |
||||
} |
@ -0,0 +1,9 @@
|
||||
package com.logpm.warehouse.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.logpm.warehouse.entity.WarehouseWayBillDetailAbolish; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
|
||||
@Mapper |
||||
public interface WarehouseWayBillDetailAbolishMapper extends BaseMapper<WarehouseWayBillDetailAbolish> { |
||||
} |
@ -0,0 +1,9 @@
|
||||
package com.logpm.warehouse.mapper; |
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||
import com.logpm.warehouse.entity.WarehouseWaybillAbolishEntity; |
||||
import org.apache.ibatis.annotations.Mapper; |
||||
|
||||
@Mapper |
||||
public interface WarehouseWaybillAbolishMapper extends BaseMapper<WarehouseWaybillAbolishEntity> { |
||||
} |
@ -0,0 +1,8 @@
|
||||
package com.logpm.warehouse.service; |
||||
|
||||
import com.logpm.warehouse.entity.WarehouseWayBillDetailAbolish; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
|
||||
public interface IWarehouseWayBillDetailAbolishService extends BaseService<WarehouseWayBillDetailAbolish> { |
||||
|
||||
} |
@ -0,0 +1,7 @@
|
||||
package com.logpm.warehouse.service; |
||||
|
||||
import com.logpm.warehouse.entity.WarehouseWaybillAbolishEntity; |
||||
import org.springblade.core.mp.base.BaseService; |
||||
|
||||
public interface IWarehouseWaybillAbolishService extends BaseService<WarehouseWaybillAbolishEntity> { |
||||
} |
@ -0,0 +1,18 @@
|
||||
package com.logpm.warehouse.service.impl; |
||||
|
||||
import com.logpm.warehouse.entity.WarehouseWayBillDetailAbolish; |
||||
import com.logpm.warehouse.mapper.WarehouseWayBillDetailAbolishMapper; |
||||
import com.logpm.warehouse.service.IWarehouseWayBillDetailAbolishService; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
@Slf4j |
||||
@AllArgsConstructor |
||||
@Service |
||||
public class WarehouseWayBillDetailAbolishServiceImpl extends BaseServiceImpl<WarehouseWayBillDetailAbolishMapper, WarehouseWayBillDetailAbolish> implements IWarehouseWayBillDetailAbolishService { |
||||
|
||||
|
||||
|
||||
} |
@ -0,0 +1,15 @@
|
||||
package com.logpm.warehouse.service.impl; |
||||
|
||||
import com.logpm.warehouse.entity.WarehouseWaybillAbolishEntity; |
||||
import com.logpm.warehouse.mapper.WarehouseWaybillAbolishMapper; |
||||
import com.logpm.warehouse.service.IWarehouseWaybillAbolishService; |
||||
import lombok.AllArgsConstructor; |
||||
import lombok.extern.slf4j.Slf4j; |
||||
import org.springblade.core.mp.base.BaseServiceImpl; |
||||
import org.springframework.stereotype.Service; |
||||
|
||||
@Service |
||||
@AllArgsConstructor |
||||
@Slf4j |
||||
public class WarehouseWaybillAbolishServiceImpl extends BaseServiceImpl<WarehouseWaybillAbolishMapper, WarehouseWaybillAbolishEntity> implements IWarehouseWaybillAbolishService { |
||||
} |
Loading…
Reference in new issue