记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
董敬伟
liquidnet-bus-v1
Commits
78f0d668
Commit
78f0d668
authored
Mar 16, 2022
by
sunyuntian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
exit
parent
f17e2b8c
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
42 additions
and
38 deletions
+42
-38
SmileAgentVo.java
...ava/com/liquidnet/service/goblin/dto/vo/SmileAgentVo.java
+6
-4
SmileOrganizationVo.java
.../client/admin/zhengzai/smile/dto/SmileOrganizationVo.java
+6
-6
SmileUserVo.java
...iquidnet/client/admin/zhengzai/smile/dto/SmileUserVo.java
+6
-6
UserCheckVo.java
...iquidnet/client/admin/zhengzai/smile/dto/UserCheckVo.java
+6
-6
SmileAgent.java
...n/java/com/liquidnet/service/smile/entity/SmileAgent.java
+5
-3
SmileSchool.java
.../java/com/liquidnet/service/smile/entity/SmileSchool.java
+6
-6
SmileUser.java
...in/java/com/liquidnet/service/smile/entity/SmileUser.java
+7
-7
No files found.
liquidnet-bus-
client/liquidnet-client-admin/liquidnet-client-admin-zhengzai/src/main/java/com/liquidnet/client/admin/zhengzai/smile/dt
o/SmileAgentVo.java
→
liquidnet-bus-
api/liquidnet-service-smile-api/src/main/java/com/liquidnet/service/goblin/dto/v
o/SmileAgentVo.java
View file @
78f0d668
package
com
.
liquidnet
.
client
.
admin
.
zhengzai
.
smile
.
dt
o
;
package
com
.
liquidnet
.
service
.
goblin
.
dto
.
v
o
;
import
lombok.Data
;
import
lombok.Data
;
import
java.math.BigDecimal
;
/**
/**
* <p>
* <p>
*
*
...
@@ -18,7 +20,7 @@ public class SmileAgentVo {
...
@@ -18,7 +20,7 @@ public class SmileAgentVo {
/**
/**
* 演出id
* 演出id
*/
*/
private
String
show
Id
;
private
String
performance
Id
;
/**
/**
* 票id
* 票id
...
@@ -33,12 +35,12 @@ public class SmileAgentVo {
...
@@ -33,12 +35,12 @@ public class SmileAgentVo {
/**
/**
* 总代票提
* 总代票提
*/
*/
private
Double
totalCarry
;
private
BigDecimal
totalCarry
;
/**
/**
* 普代票提
* 普代票提
*/
*/
private
Double
ordCarry
;
private
BigDecimal
ordCarry
;
}
}
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-zhengzai/src/main/java/com/liquidnet/client/admin/zhengzai/smile/dto/SmileOrganizationVo.java
View file @
78f0d668
...
@@ -29,9 +29,9 @@ public class SmileOrganizationVo{
...
@@ -29,9 +29,9 @@ public class SmileOrganizationVo{
private
String
name
;
private
String
name
;
/**
/**
* 省
key
* 省
Id
*/
*/
private
Integer
provinceKey
;
private
String
provinceId
;
/**
/**
* 省
* 省
...
@@ -39,9 +39,9 @@ public class SmileOrganizationVo{
...
@@ -39,9 +39,9 @@ public class SmileOrganizationVo{
private
String
province
;
private
String
province
;
/**
/**
* 市
key
* 市
Id
*/
*/
private
Integer
cityKey
;
private
String
cityId
;
/**
/**
* 市
* 市
...
@@ -49,9 +49,9 @@ public class SmileOrganizationVo{
...
@@ -49,9 +49,9 @@ public class SmileOrganizationVo{
private
String
city
;
private
String
city
;
/**
/**
* 区
key
* 区
Id
*/
*/
private
Integer
areaKey
;
private
String
areaId
;
/**
/**
* 区
* 区
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-zhengzai/src/main/java/com/liquidnet/client/admin/zhengzai/smile/dto/SmileUserVo.java
View file @
78f0d668
...
@@ -41,9 +41,9 @@ public class SmileUserVo {
...
@@ -41,9 +41,9 @@ public class SmileUserVo {
private
String
phone
;
private
String
phone
;
/**
/**
* 省
key
* 省
Id
*/
*/
private
String
province
Key
;
private
String
province
Id
;
/**
/**
* 省
* 省
...
@@ -51,9 +51,9 @@ public class SmileUserVo {
...
@@ -51,9 +51,9 @@ public class SmileUserVo {
private
String
province
;
private
String
province
;
/**
/**
* 市
key
* 市
Id
*/
*/
private
String
city
Key
;
private
String
city
Id
;
/**
/**
* 市
* 市
...
@@ -61,9 +61,9 @@ public class SmileUserVo {
...
@@ -61,9 +61,9 @@ public class SmileUserVo {
private
String
city
;
private
String
city
;
/**
/**
* 区
key
* 区
Id
*/
*/
private
String
area
Key
;
private
String
area
Id
;
/**
/**
* 区
* 区
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-zhengzai/src/main/java/com/liquidnet/client/admin/zhengzai/smile/dto/UserCheckVo.java
View file @
78f0d668
...
@@ -42,9 +42,9 @@ public class UserCheckVo {
...
@@ -42,9 +42,9 @@ public class UserCheckVo {
private
String
phone
;
private
String
phone
;
/**
/**
* 省
key
* 省
Id
*/
*/
private
String
province
Key
;
private
String
province
Id
;
/**
/**
* 省
* 省
...
@@ -52,9 +52,9 @@ public class UserCheckVo {
...
@@ -52,9 +52,9 @@ public class UserCheckVo {
private
String
province
;
private
String
province
;
/**
/**
* 市
key
* 市
Id
*/
*/
private
String
city
Key
;
private
String
city
Id
;
/**
/**
* 市
* 市
...
@@ -62,9 +62,9 @@ public class UserCheckVo {
...
@@ -62,9 +62,9 @@ public class UserCheckVo {
private
String
city
;
private
String
city
;
/**
/**
* 区
key
* 区
Id
*/
*/
private
String
area
Key
;
private
String
area
Id
;
/**
/**
* 区
* 区
...
...
liquidnet-bus-do/liquidnet-service-smile-do/src/main/java/com/liquidnet/service/smile/entity/SmileAgent.java
View file @
78f0d668
...
@@ -4,6 +4,7 @@ import lombok.Data;
...
@@ -4,6 +4,7 @@ import lombok.Data;
import
lombok.EqualsAndHashCode
;
import
lombok.EqualsAndHashCode
;
import
java.io.Serializable
;
import
java.io.Serializable
;
import
java.math.BigDecimal
;
/**
/**
* <p>
* <p>
...
@@ -24,7 +25,7 @@ public class SmileAgent implements Serializable {
...
@@ -24,7 +25,7 @@ public class SmileAgent implements Serializable {
/**
/**
* 演出id
* 演出id
*/
*/
private
String
show
Id
;
private
String
performance
Id
;
/**
/**
* 票id
* 票id
...
@@ -36,15 +37,16 @@ public class SmileAgent implements Serializable {
...
@@ -36,15 +37,16 @@ public class SmileAgent implements Serializable {
*/
*/
private
String
ticketType
;
private
String
ticketType
;
/**
/**
* 总代票提
* 总代票提
*/
*/
private
Double
totalCarry
;
private
BigDecimal
totalCarry
;
/**
/**
* 普代票提
* 普代票提
*/
*/
private
Double
ordCarry
;
private
BigDecimal
ordCarry
;
}
}
liquidnet-bus-do/liquidnet-service-smile-do/src/main/java/com/liquidnet/service/smile/entity/SmileSchool.java
View file @
78f0d668
...
@@ -37,9 +37,9 @@ public class SmileSchool implements Serializable {
...
@@ -37,9 +37,9 @@ public class SmileSchool implements Serializable {
private
String
address
;
private
String
address
;
/**
/**
* 省
key
* 省
Id
*/
*/
private
String
province
Key
;
private
String
province
Id
;
/**
/**
* 省
* 省
...
@@ -47,9 +47,9 @@ public class SmileSchool implements Serializable {
...
@@ -47,9 +47,9 @@ public class SmileSchool implements Serializable {
private
String
province
;
private
String
province
;
/**
/**
* 市
key
* 市
Id
*/
*/
private
String
city
Key
;
private
String
city
Id
;
/**
/**
* 市
* 市
...
@@ -57,9 +57,9 @@ public class SmileSchool implements Serializable {
...
@@ -57,9 +57,9 @@ public class SmileSchool implements Serializable {
private
String
city
;
private
String
city
;
/**
/**
* 区
key
* 区
Id
*/
*/
private
String
area
Key
;
private
String
area
Id
;
/**
/**
* 区
* 区
...
...
liquidnet-bus-do/liquidnet-service-smile-do/src/main/java/com/liquidnet/service/smile/entity/SmileUser.java
View file @
78f0d668
...
@@ -56,9 +56,9 @@ public class SmileUser implements Serializable {
...
@@ -56,9 +56,9 @@ public class SmileUser implements Serializable {
private
String
phone
;
private
String
phone
;
/**
/**
* 省
key
* 省
Id
*/
*/
private
String
province
Key
;
private
String
province
Id
;
/**
/**
* 省
* 省
...
@@ -66,9 +66,9 @@ public class SmileUser implements Serializable {
...
@@ -66,9 +66,9 @@ public class SmileUser implements Serializable {
private
String
province
;
private
String
province
;
/**
/**
* 市
key
* 市
Id
*/
*/
private
String
city
Key
;
private
String
city
Id
;
/**
/**
* 市
* 市
...
@@ -76,9 +76,9 @@ public class SmileUser implements Serializable {
...
@@ -76,9 +76,9 @@ public class SmileUser implements Serializable {
private
String
city
;
private
String
city
;
/**
/**
* 区
key
* 区
Id
*/
*/
private
String
area
Key
;
private
String
area
Id
;
/**
/**
* 区
* 区
...
@@ -96,7 +96,7 @@ public class SmileUser implements Serializable {
...
@@ -96,7 +96,7 @@ public class SmileUser implements Serializable {
private
String
wechat
;
private
String
wechat
;
/**
/**
* 代理类型(
1:总代,2:普代
)
* 代理类型(
0:未审核,1:总代,2:普代,3:未认证
)
*/
*/
private
Integer
type
;
private
Integer
type
;
...
...
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