30 lines
624 B
Plaintext
30 lines
624 B
Plaintext
package com.cmeim.biz.vo.app;
|
|
|
|
|
|
import com.cmeim.biz.po.MmOtheroutBillDetail;
|
|
import com.cmeim.biz.po.MmOtheroutBillItem;
|
|
import io.swagger.annotations.ApiParam;
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class OtherOutBillDetailVo extends MmOtheroutBillDetail {
|
|
|
|
@ApiParam("已领条码数量")
|
|
private Integer pickedQty;
|
|
|
|
@ApiParam("全部条码数量")
|
|
private Integer totalQty;
|
|
|
|
@ApiParam("推荐条码")
|
|
private String recommendBar;
|
|
|
|
@ApiParam("推荐库位")
|
|
private String recommendLocation;
|
|
|
|
@ApiParam("领料记录")
|
|
private List<MmOtheroutBillItem> items;
|
|
|
|
}
|