LotSearch.java

package com.mycim.valueobject.oaApi;

import java.util.List;

public class LotSearch {
    private String LotName;

    public static class LotSearchResp extends LotSearch {
        private long lotRrn;

        private String productName;

        private String project;

        private String lotStatus;

        private List<LotSearchUnitResp> unitList;

        public long getLotRrn() {
            return lotRrn;
        }

        public void setLotRrn(long lotRrn) {
            this.lotRrn = lotRrn;
        }

        public String getProductName() {
            return productName;
        }

        public void setProductName(String productName) {
            this.productName = productName;
        }

        public String getProject() {
            return project;
        }

        public void setProject(String project) {
            this.project = project;
        }

        public String getLotStatus() {
            return lotStatus;
        }

        public void setLotStatus(String lotStatus) {
            this.lotStatus = lotStatus;
        }

        public List<LotSearchUnitResp> getUnitList() {
            return unitList;
        }

        public void setUnitList(List<LotSearchUnitResp> unitList) {
            this.unitList = unitList;
        }

    }

    public static class LotSearchUnitResp {
        private long unitRrn;

        private String unitName;

        public LotSearchUnitResp(long unitRrn, String unitName) {
            this.unitRrn = unitRrn;
            this.unitName = unitName;
        }

        public long getUnitRrn() {
            return unitRrn;
        }

        public void setUnitRrn(long unitRrn) {
            this.unitRrn = unitRrn;
        }

        public String getUnitName() {
            return unitName;
        }

        public void setUnitName(String unitName) {
            this.unitName = unitName;
        }

    }

    public String getLotName() {
        return LotName;
    }

    public void setLotName(String lotName) {
        LotName = lotName;
    }

}