CustomerValidateInfoDto.java 789 Bytes
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5
package pwc.taxtech.atms.dto.customer;

import com.alibaba.fastjson.annotation.JSONType;
import pwc.taxtech.atms.dto.ValidateInfoDto;

6 7
import java.util.List;

eddie.woo's avatar
eddie.woo committed
8 9 10 11
@JSONType(orders = {"customerList", "validateInfoList"})
public class CustomerValidateInfoDto {

    private List<CustomerDto> customerList;
12

eddie.woo's avatar
eddie.woo committed
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
    private List<ValidateInfoDto> validateInfoList;

    public List<CustomerDto> getCustomerList() {
        return customerList;
    }

    public void setCustomerList(List<CustomerDto> customerList) {
        this.customerList = customerList;
    }

    public List<ValidateInfoDto> getValidateInfoList() {
        return validateInfoList;
    }

    public void setValidateInfoList(List<ValidateInfoDto> validateInfoList) {
        this.validateInfoList = validateInfoList;
    }

31

eddie.woo's avatar
eddie.woo committed
32
}