package com.ruoyi.dataInterchange.util.haikang.model; import java.util.ArrayList; public class EventUnSubscriptionByEventTypesRequest { private ArrayList eventTypes; private ArrayList clientIds; public ArrayList getEventTypes() { return eventTypes; } public void setEventTypes(ArrayList eventTypes) { this.eventTypes = eventTypes; } public ArrayList getClientIds() { return clientIds; } public void setClientIds(ArrayList clientIds) { this.clientIds = clientIds; } }