BatchMoveOutReqRequestDto.java

package com.mycim.apis.eap.dto;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

/**
 * @author finatice.yang
 * @date 2021/6/19
 **/
public class BatchMoveOutReqRequestDto implements Serializable {

    private String equipmentId;

    private List<LotEdcInfoDto> lotList = new ArrayList<>();

    public String getEquipmentId() {
        return equipmentId;
    }

    public void setEquipmentId(String equipmentId) {
        this.equipmentId = equipmentId;
    }

    public List<LotEdcInfoDto> getLotList() {
        return lotList;
    }

    public void setLotList(List<LotEdcInfoDto> lotList) {
        this.lotList = lotList;
    }

}