package pwc.taxtech.atms.dto.customer;
import java.util.List;
import com.alibaba.fastjson.annotation.JSONType;
import pwc.taxtech.atms.dto.ValidateInfoDto;
@JSONType(orders = {"customerList", "validateInfoList"})
public class CustomerValidateInfoDto {
private List<CustomerDto> customerList;
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;
}
}
-
eddie.woo authoreda5729303