Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
order-group
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
order-group-application
order-group
Commits
1b3b0924
Commit
1b3b0924
authored
Jul 15, 2021
by
hanghang.wang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
订单聚合添加bizType枚举类对应关系
parent
a325263e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
2 deletions
+20
-2
order-application-service/src/main/java/cn/freemud/enums/BizTypeEnum.java
+20
-2
No files found.
order-application-service/src/main/java/cn/freemud/enums/BizTypeEnum.java
View file @
1b3b0924
package
cn
.
freemud
.
enums
;
package
cn
.
freemud
.
enums
;
/**
* @author wanghanghang
* @title: QueryHeardServiceImpl
* @projectName order_group
* @description: 订单BizType枚举类
* @date 2021/7/15下午10:50
*/
public
enum
BizTypeEnum
{
public
enum
BizTypeEnum
{
APP_COUPON
(
6
,
"APP买券"
),
//字段6代表卖券订单。
//蜜雪APP和平台通用。
//后续使用此字段需注意。名称APP_COUPON取得有些误导,由于有地方使用,暂时不更改
APP_COUPON
(
6
,
"卖券订单"
),
ORDINARY
(
1
,
"普通订单"
),
VIRTUAL
(
2
,
"虚拟订单"
),
MEMBERS
(
3
,
"会员订单"
),
INTEGRAL_MALL
(
4
,
"积分商城订单"
),
SVC
(
5
,
"储值卡订单"
),
LGS_SELF_HELP_PARKING
(
97
,
"农工商停车自助积分订单"
),
LGS_MANUAL_RECORD_PARKING
(
98
,
"农工商停车手工录单"
),
LGS_PARKING
(
99
,
"农工商停车订单"
);
APP_PRO
(
1
,
"未知(目前暂不支持),后续可能预留给正常商品"
);
private
Integer
bizType
;
private
Integer
bizType
;
private
String
desc
;
private
String
desc
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment