Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
iClear-Connect-Pre-Clearance
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
tao.mo
2024-11-04 13:29:03 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e5a51705b1c48a6ec7b585228d87923cc85667bc
e5a51705
1 parent
f5623e5d
common-dependencies | 修改 | 常量以及枚举配置
mt 2024年11月4日13:28:58
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
0 deletions
server/common-dependencies/src/main/java/com/fedex/connect/common/dependencies/contants/DictionaryConstants.java
server/common-dependencies/src/main/java/com/fedex/connect/common/dependencies/enums/biz/ConsignmentStatusEnum.java
server/common-dependencies/src/main/java/com/fedex/connect/common/dependencies/contants/DictionaryConstants.java
0 → 100644
View file @
e5a5170
package
com
.
fedex
.
connect
.
common
.
dependencies
.
contants
;
/**
* @Author mt
* @Description 字典目录层级常量
* @Date 2024/11/4
*/
public
interface
DictionaryConstants
{
//运单状态
String
CONSIGNMENT_STATUS
=
"CONSIGNMENT_STATUS"
;
//用户类型
String
USER_TYPE
=
"USER_TYPE"
;
}
server/common-dependencies/src/main/java/com/fedex/connect/common/dependencies/enums/biz/ConsignmentStatusEnum.java
0 → 100644
View file @
e5a5170
package
com
.
fedex
.
connect
.
common
.
dependencies
.
enums
.
biz
;
/**
* @Author mt
* @Description 运单状态枚举
* @Date 2024/11/4
*/
public
enum
ConsignmentStatusEnum
{
CONSIGNMENT_STATUS_01
(
"consignmentStatus_01"
,
"待上传"
),
CONSIGNMENT_STATUS_02
(
"consignmentStatus_02"
,
"已上传"
),
CONSIGNMENT_STATUS_03
(
"consignmentStatus_03"
,
"已发送"
);
private
String
code
;
private
String
msg
;
ConsignmentStatusEnum
(
String
code
,
String
msg
)
{
this
.
code
=
code
;
this
.
msg
=
msg
;
}
public
String
getCode
()
{
return
code
;
}
public
String
getMsg
()
{
return
msg
;
}
}
Please
register
or
login
to post a comment