cn.zhengzhanpeng.itchat4j.utils.enums.parameters.BaseParaEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of itchat4j Show documentation
Show all versions of itchat4j Show documentation
A application used to control wechat by java.
package cn.zhengzhanpeng.itchat4j.utils.enums.parameters;
/**
*
* 基本请求参数
* 1. webWxInit 初始化
* 2. wxStatusNotify 微信状态通知
*
*
* Created by xiaoxiaomo on 2017/5/7.
*/
public enum BaseParaEnum {
Uin("Uin", "wxuin"),
Sid("Sid", "wxsid"),
Skey("Skey", "skey"),
DeviceID("DeviceID", "pass_ticket");
private String para;
private String value;
BaseParaEnum(String para, String value) {
this.para = para;
this.value = value;
}
public String para() {
return para;
}
public Object value() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy