@@ -0,0 +1,24 @@
+package cn.efunbox.audio.consts;
+
+/**
+ * Created by yao on 17-9-26.
+ */
+public enum Receipt {
+ NORMAL(1,"普票"),
+ VALUEADDED(2,"增值税发票");
+ private int code=1;
+ private String msg = "";
+ Receipt(int code, String msg){
+ this.code = code;
+ this.msg = msg;
+ }
+ public int getCode(){
+ return code;
+ public String getMsg(){
+ return msg;
+}