chenjiahe
2024-03-01 cfedbfad423aa6fd758da748967122819b1787e2
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
package com.hx.phip.reques.entity;
 
 
public class CorpGetToken {
 
    /**企业id*/
    private String corpId;
    /**小程序appid*/
    private String mpId;
 
    public String getCorpId() {
        return corpId;
    }
 
    public void setCorpId(String corpId) {
        this.corpId = corpId;
    }
 
    public String getMpId() {
        return mpId;
    }
 
    public void setMpId(String mpId) {
        this.mpId = mpId;
    }
}