whycxzp
2021-03-12 2bae92b9b3dfac9766477a12dd3b6a339de80249
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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;
    }
}