Compare commits

..

No commits in common. "6c060fbc175bbb1d647fc199d02e66c58dc65e50" and "7de3bd095b5eff7cbffd33dc69033d0433319fd5" have entirely different histories.

3 changed files with 2 additions and 12 deletions

View File

@ -105,8 +105,6 @@ public class ComponentPackingControllerService {
wmsComponentPacking.setZjshz(request.getZjshz());
wmsComponentPacking.setZchep(request.getZchep());
wmsComponentPacking.setTelNumber(request.getTelNumber());
wmsComponentPacking.setGStreen(request.getGstreen());
wmsComponentPacking.setGStrSuppl2(request.getGstrSuppl2());
//修改自己集合
List<WmsComponentPackingItem> wmsComponentPackingItems = wmsComponentPackingItemService
.lambdaQuery()

View File

@ -48,16 +48,6 @@ public class ComponentPackingEditInputQO {
*/
private String telNumber;
/**
* 收货地址-T
*/
private String gstreen;
/**
* 收货人电话-
*/
private String gstrSuppl2;
/**
* 装箱单明细

View File

@ -1,5 +1,6 @@
package com.nflg.wms.common.pojo.qo;
import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.NotNull;
import lombok.Data;
@ -15,5 +16,6 @@ public class InSubmitItemQO {
/**
* 入库储位编号列表
*/
@NotBlank
private String binNos;
}