办学质量监测教学评价系统
ageerle
2025-03-04 ddfd2cf3eaf0fc4409877dff7a3d0d3f21885103
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.xmzs.common.wechat.beans;
 
import java.io.Serializable;
 
/**
 * AppInfo
 *
 * @author https://github.com/yaphone
 * @date 创建时间:2017年7月3日 下午10:38:14
 * @version 1.0
 *
 */
public class AppInfo implements Serializable {
    /**
     *
     */
    private static final long serialVersionUID = 1L;
    private int type;
    private String appId;
 
    public int getType() {
        return type;
    }
 
    public void setType(int type) {
        this.type = type;
    }
 
    public String getAppId() {
        return appId;
    }
 
    public void setAppId(String appId) {
        this.appId = appId;
    }
 
}