Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
customer-service
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
SuperHive
back-end
customer-service
Commits
e9886be1
Commit
e9886be1
authored
Apr 29, 2020
by
huangcb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
承运商接口:carrier的字典表类型统一为Integer
parent
6e3e1c37
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
8 deletions
+9
-8
CarrierConstants.java
...esv/freight/customer/module/carrier/CarrierConstants.java
+2
-2
CarrierInfoDto.java
...v/freight/customer/module/carrier/dto/CarrierInfoDto.java
+1
-1
CarrierAccountEntity.java
.../customer/module/carrier/entity/CarrierAccountEntity.java
+1
-1
CarrierQueryForm.java
...reight/customer/module/carrier/form/CarrierQueryForm.java
+2
-1
CarrierInfoBriefVO.java
...reight/customer/module/carrier/vo/CarrierInfoBriefVO.java
+1
-1
CarrierInfoDetailVO.java
...eight/customer/module/carrier/vo/CarrierInfoDetailVO.java
+1
-1
CarrierInfoListVO.java
...freight/customer/module/carrier/vo/CarrierInfoListVO.java
+1
-1
No files found.
src/main/java/com/esv/freight/customer/module/carrier/CarrierConstants.java
View file @
e9886be1
...
...
@@ -20,7 +20,7 @@ public class CarrierConstants {
/**
* 帐号状态:1-正常、2-停用
**/
public
static
final
String
CARRIER_ACCOUNT_STATUS_UNBLOCK
=
"1"
;
public
static
final
String
CARRIER_ACCOUNT_STATUS_BLOCK
=
"2"
;
public
static
final
Integer
CARRIER_ACCOUNT_STATUS_UNBLOCK
=
1
;
public
static
final
Integer
CARRIER_ACCOUNT_STATUS_BLOCK
=
2
;
}
src/main/java/com/esv/freight/customer/module/carrier/dto/CarrierInfoDto.java
View file @
e9886be1
...
...
@@ -27,7 +27,7 @@ public class CarrierInfoDto {
/**
* 帐号状态:1-正常、2-停用
*/
private
String
accountStatus
;
private
Integer
accountStatus
;
/**
* 创建者
*/
...
...
src/main/java/com/esv/freight/customer/module/carrier/entity/CarrierAccountEntity.java
View file @
e9886be1
...
...
@@ -51,7 +51,7 @@ public class CarrierAccountEntity implements Serializable {
/**
* 帐号状态:1-正常、2-停用
*/
private
String
accountStatus
;
private
Integer
accountStatus
;
/**
* 创建者
*/
...
...
src/main/java/com/esv/freight/customer/module/carrier/form/CarrierQueryForm.java
View file @
e9886be1
...
...
@@ -37,7 +37,8 @@ public class CarrierQueryForm {
/**
* 帐号状态:1-正常、2-停用
*/
private
String
accountStatus
;
@Range
(
min
=
1
,
max
=
2
,
message
=
"参数accountStatus不合法"
,
groups
=
{
ValidatorList
.
class
})
private
Integer
accountStatus
;
/**
* 客户编码
*/
...
...
src/main/java/com/esv/freight/customer/module/carrier/vo/CarrierInfoBriefVO.java
View file @
e9886be1
...
...
@@ -27,7 +27,7 @@ public class CarrierInfoBriefVO {
/**
* 帐号状态:1-正常、2-停用
*/
private
String
accountStatus
;
private
Integer
accountStatus
;
/**
* 客户编码
*/
...
...
src/main/java/com/esv/freight/customer/module/carrier/vo/CarrierInfoDetailVO.java
View file @
e9886be1
...
...
@@ -27,7 +27,7 @@ public class CarrierInfoDetailVO {
/**
* 帐号状态:1-正常、2-停用
*/
private
String
accountStatus
;
private
Integer
accountStatus
;
/**
* 创建者
*/
...
...
src/main/java/com/esv/freight/customer/module/carrier/vo/CarrierInfoListVO.java
View file @
e9886be1
...
...
@@ -27,7 +27,7 @@ public class CarrierInfoListVO {
/**
* 帐号状态:1-正常、2-停用
*/
private
String
accountStatus
;
private
Integer
accountStatus
;
/**
* 创建者
*/
...
...
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