From c0c76d3ccf61eae1bd1da69d6be0bd1c0818b995 Mon Sep 17 00:00:00 2001 From: zhenghaoyu Date: Sat, 22 Jul 2023 16:40:12 +0800 Subject: [PATCH] =?UTF-8?q?1.=E8=87=AA=E6=8F=90=E6=A8=A1=E5=9D=97=E6=8F=90?= =?UTF-8?q?=E4=BA=A4=EF=BC=88=E6=9C=AA=E5=AE=8C=E6=88=90=EF=BC=89=202.?= =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../BasicdataStorageServicesEntity.java | 4 +- .../vo/DistrilbutionBillLadingAppVO.java | 39 +++++++++++++++++++ .../mapper/BasicdataStorageServicesMapper.xml | 4 +- .../DistributionBillLadingAppController.java | 34 +++++++++++----- 4 files changed, 68 insertions(+), 13 deletions(-) create mode 100644 blade-service-api/logpm-distribution-api/src/main/java/com/logpm/distribution/vo/DistrilbutionBillLadingAppVO.java diff --git a/blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/entity/BasicdataStorageServicesEntity.java b/blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/entity/BasicdataStorageServicesEntity.java index 8249fdd62..75aa642dc 100644 --- a/blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/entity/BasicdataStorageServicesEntity.java +++ b/blade-service-api/logpm-basicdata-api/src/main/java/com/logpm/basicdata/entity/BasicdataStorageServicesEntity.java @@ -77,7 +77,7 @@ public class BasicdataStorageServicesEntity extends TenantEntity { * 服务仓库 */ @ApiModelProperty(value = "服务仓库ID") - private String serveWarehouseId; + private Long serveWarehouseId; @ApiModelProperty(value = "服务仓库Name") private String serveWarehouseName; @@ -86,7 +86,7 @@ public class BasicdataStorageServicesEntity extends TenantEntity { * 发货仓库 发货仓库客户允许未null */ @ApiModelProperty(value = "发货仓库ID") - private String sendWarehouseId; + private Long sendWarehouseId; @ApiModelProperty(value = "发货仓库Name") private String sendWarehouseName; diff --git a/blade-service-api/logpm-distribution-api/src/main/java/com/logpm/distribution/vo/DistrilbutionBillLadingAppVO.java b/blade-service-api/logpm-distribution-api/src/main/java/com/logpm/distribution/vo/DistrilbutionBillLadingAppVO.java new file mode 100644 index 000000000..5c2b3e57c --- /dev/null +++ b/blade-service-api/logpm-distribution-api/src/main/java/com/logpm/distribution/vo/DistrilbutionBillLadingAppVO.java @@ -0,0 +1,39 @@ +/* + * 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.DistrilbutionBillLadingEntity; +import lombok.Data; +import lombok.EqualsAndHashCode; + +/** + * 提货单 视图实体类 + * + * @author cyz + * @since 2023-06-14 + */ +@Data +@EqualsAndHashCode(callSuper = true) +public class DistrilbutionBillLadingAppVO extends DistrilbutionBillLadingEntity { + private static final long serialVersionUID = 1L; + + private Integer carType; + private String carTypeStr; + +// private Integer + +} diff --git a/blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/mapper/BasicdataStorageServicesMapper.xml b/blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/mapper/BasicdataStorageServicesMapper.xml index 9633c1fa4..89b9424fc 100644 --- a/blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/mapper/BasicdataStorageServicesMapper.xml +++ b/blade-service/logpm-basicdata/src/main/java/com/logpm/basicdata/mapper/BasicdataStorageServicesMapper.xml @@ -9,7 +9,7 @@