jialh
1 天以前 dd6687b118561100e1677e88a9c2f5842a54c531
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
32
33
34
35
36
37
package com.java110.dto.system;
 
import java.io.Serializable;
 
/**
 * 服务状态对象
 * Created by wuxw on 2018/4/14.
 */
public class AppServiceStatus  implements Serializable{
 
    private AppService appService;
    private String statusCd;
 
    public AppServiceStatus() {
    }
 
    public AppServiceStatus(AppService appService, String statusCd) {
        this.appService = appService;
        this.statusCd = statusCd;
    }
 
    public AppService getAppService() {
        return appService;
    }
 
    public void setAppService(AppService appService) {
        this.appService = appService;
    }
 
    public String getStatusCd() {
        return statusCd;
    }
 
    public void setStatusCd(String statusCd) {
        this.statusCd = statusCd;
    }
}