Commit b76f0dff by zhiwj

渠道资源

parent 0fbfdbfb
package com.gic.auth.dto;
import java.io.Serializable;
import java.util.List;
/**
* @author zhiwj
* @Description:
* @date 2020-01-09 15:04
*/
public class ChannelResourceDTO implements Serializable {
private static final long serialVersionUID = -7372101518056686792L;
private List<Long> cardConfigIdList;
private List<Long> appletConfigIdList;
private List<Long> serviceConfigIdList;
public List<Long> getCardConfigIdList() {
return cardConfigIdList;
}
public void setCardConfigIdList(List<Long> cardConfigIdList) {
this.cardConfigIdList = cardConfigIdList;
}
public List<Long> getAppletConfigIdList() {
return appletConfigIdList;
}
public void setAppletConfigIdList(List<Long> appletConfigIdList) {
this.appletConfigIdList = appletConfigIdList;
}
public List<Long> getServiceConfigIdList() {
return serviceConfigIdList;
}
public void setServiceConfigIdList(List<Long> serviceConfigIdList) {
this.serviceConfigIdList = serviceConfigIdList;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment