cn.zhengzhanpeng.itchat4j.utils.enums.VerifyFriendEnum 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;
public enum VerifyFriendEnum {
ADD(2, "添加"),
ACCEPT(3, "接受");
private int code;
private String desc;
private VerifyFriendEnum(int code, String desc) {
this.code = code;
this.desc = desc;
}
public int getCode() {
return code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy