package com.whyc.dto;
|
|
import com.whyc.pojo.ApplicationConfig;
|
|
import java.beans.Transient;
|
import java.util.List;
|
|
/**
|
* 应用内模块配置DTO
|
*/
|
public class ApplicationConfigDTO {
|
|
private Integer appId;
|
private List<ApplicationConfig> children;
|
|
public Integer getAppId() {
|
return appId;
|
}
|
|
public void setAppId(Integer appId) {
|
this.appId = appId;
|
}
|
|
public List<ApplicationConfig> getChildren() {
|
return children;
|
}
|
|
public void setChildren(List<ApplicationConfig> children) {
|
this.children = children;
|
}
|
}
|