
com.fasc.open.api.bean.common.CustomNotifyContent Maven / Gradle / Ivy
package com.fasc.open.api.bean.common;
import java.util.Map;
/**
* @author zhoufucheng
* @date 2023/9/15 10:25
*/
public class CustomNotifyContent {
private String serviceCenterName;
private String customUrl;
private Map varMap;
public Map getVarMap() {
return varMap;
}
public void setVarMap(Map varMap) {
this.varMap = varMap;
}
public String getServiceCenterName() {
return serviceCenterName;
}
public void setServiceCenterName(String serviceCenterName) {
this.serviceCenterName = serviceCenterName;
}
public String getCustomUrl() {
return customUrl;
}
public void setCustomUrl(String customUrl) {
this.customUrl = customUrl;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy