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 @@