refactor code

This commit is contained in:
Binary Wang
2018-11-18 14:37:55 +08:00
parent 1d35399a7c
commit 3dd70569e6
4 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,29 @@
package me.chanjar.weixin.mp.enums;
import lombok.Getter;
/**
* <pre>
* AI开放接口里的语言类型目前只支持两种中文和英文
* Created by BinaryWang on 2018/6/10.
* </pre>
*
* @author <a href="https://github.com/binarywang">Binary Wang</a>
*/
@Getter
public enum AiLangType {
/**
* 中文 汉语.
*/
zh_CN("zh_CN"),
/**
* 英文 英语.
*/
en_US("en_US");
private String code;
AiLangType(String code) {
this.code = code;
}
}