| | |
| | | package com.whyc.dto; |
| | | |
| | | import com.whyc.pojo.ApplicationConfig; |
| | | import org.apache.ibatis.type.Alias; |
| | | |
| | | import java.beans.Transient; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 应用内模块配置DTO |
| | | */ |
| | | @Alias("ApplicationConfigDTO") |
| | | public class ApplicationConfigDTO { |
| | | |
| | | private Integer appId; |
| | | private String appName; |
| | | private String headPic; |
| | | private String bgPic; |
| | | private List<ApplicationConfig> children; |
| | | |
| | | public Integer getAppId() { |
| | |
| | | public void setChildren(List<ApplicationConfig> children) { |
| | | this.children = children; |
| | | } |
| | | |
| | | public String getHeadPic() { |
| | | return headPic; |
| | | } |
| | | |
| | | public void setHeadPic(String headPic) { |
| | | this.headPic = headPic; |
| | | } |
| | | |
| | | public String getBgPic() { |
| | | return bgPic; |
| | | } |
| | | |
| | | public void setBgPic(String bgPic) { |
| | | this.bgPic = bgPic; |
| | | } |
| | | |
| | | public String getAppName() { |
| | | return appName; |
| | | } |
| | | |
| | | public void setAppName(String appName) { |
| | | this.appName = appName; |
| | | } |
| | | } |