SortLotInfoRequestDto.java

package com.mycim.apis.eap.dto;

/**
 * @author songpy
 * @date 2021/11/29
 **/
public class SortLotInfoRequestDto extends LotInfoInqRequestDto {

    private static final long serialVersionUID = -7245328129041582943L;

    private String targetCarrierId;

    public String getTargetCarrierId() {
        return targetCarrierId;
    }

    public void setTargetCarrierId(String targetCarrierId) {
        this.targetCarrierId = targetCarrierId;
    }

}