@@ -0,0 +1,18 @@
+package com.github.microservice.models.type;
+
+import lombok.Getter;
+/**
+ * 支付方式
+ */
+public enum PaymentDeviceType {
+ HxzConsumTransactions("云版消费机刷卡支付"),
+ ;
+ @Getter
+ private String remark;
+ PaymentDeviceType(String remark) {
+ this.remark = remark;
+ }
+}