1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| package com.taoke.autopay.entity;
|
| /**
| * @author hxh
| * @title: OrderTypeEnum
| * @description: 订单计数类型枚举
| * @date 2024/6/28 17:13
| */
| public enum OrderCountTypeEnum {
| // 订单提交
| SUBMIT_TOKEN_COUNT(0),
| // 抖音订单支付
| DY_ORDER_PAY(1),
| //快手订单支付
| KS_ORDER_PAY(2);
|
| private int type;
|
| private OrderCountTypeEnum(int type) {
| this.type = type;
| }
|
| public int getType() {
| return type;
| }
|
| }
|
|