🎨 重构优化部分包结构

This commit is contained in:
Binary Wang
2020-08-08 16:44:02 +08:00
parent c588303d8a
commit 542b633c70
81 changed files with 83 additions and 84 deletions

View File

@@ -0,0 +1,32 @@
package me.chanjar.weixin.common.enums;
/**
* <pre>
* 微信类型枚举.
* Created by BinaryWang on 2018/5/14.
* </pre>
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
public enum WxType {
/**
* 企业微信.
*/
CP,
/**
* 微信公众号.
*/
MP,
/**
* 微信小程序.
*/
MiniApp,
/**
* 微信开放平台.
*/
Open,
/**
* 微信支付.
*/
Pay;
}