Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
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
youjj
cloud-platform
Commits
ea373242
Commit
ea373242
authored
Aug 12, 2019
by
libin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
随车物品
parent
2152ccbd
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
9 deletions
+9
-9
.gitignore
.gitignore
+1
-1
pom.xml
pom.xml
+1
-0
CustomerBehaviorNoteDTO.java
...c/platform/user/behavior/dto/CustomerBehaviorNoteDTO.java
+0
-1
AddOrUpdateAccompanyingItem.java
...fc/platform/vehicle/pojo/AddOrUpdateAccompanyingItem.java
+3
-0
AccompanyingItemMapper.java
.../xxfc/platform/vehicle/mapper/AccompanyingItemMapper.java
+0
-3
AccompanyingItemMapper.xml
...rver/src/main/resources/mapper/AccompanyingItemMapper.xml
+4
-4
No files found.
.gitignore
View file @
ea373242
...
@@ -7,7 +7,7 @@ target/
...
@@ -7,7 +7,7 @@ target/
.settings/
.settings/
.classpath
.classpath
ace-modules/ace-tool/src/main/resources/application-dev.yml
ace-modules/ace-tool/src/main/resources/application-dev.yml
src/main/test/**
/
src/main/test/**
logs/**
logs/**
xx-order/xx-order-server/logs/**
xx-order/xx-order-server/logs/**
*.log
*.log
...
...
pom.xml
View file @
ea373242
...
@@ -45,6 +45,7 @@
...
@@ -45,6 +45,7 @@
<module>
xx-im
</module>
<module>
xx-im
</module>
<module>
xx-campsite
</module>
<module>
xx-campsite
</module>
<module>
xx-activity
</module>
<module>
xx-activity
</module>
<module>
xx-user-behavior-collect
</module>
</modules>
</modules>
<packaging>
pom
</packaging>
<packaging>
pom
</packaging>
<developers>
<developers>
...
...
xx-user-behavior-collect/xx-user-behavior-api/src/main/java/com/xxfc/platform/user/behavior/dto/CustomerBehaviorNoteDTO.java
View file @
ea373242
...
@@ -18,7 +18,6 @@ public class CustomerBehaviorNoteDTO implements Serializable {
...
@@ -18,7 +18,6 @@ public class CustomerBehaviorNoteDTO implements Serializable {
@ApiModelProperty
(
"主键id"
)
@ApiModelProperty
(
"主键id"
)
private
Integer
id
;
private
Integer
id
;
@ApiModelProperty
(
value
=
"用户id"
)
@ApiModelProperty
(
value
=
"用户id"
)
private
String
customerId
;
private
String
customerId
;
...
...
xx-vehicle/xx-vehicle-api/src/main/java/com/xxfc/platform/vehicle/pojo/AddOrUpdateAccompanyingItem.java
View file @
ea373242
...
@@ -2,6 +2,8 @@ package com.xxfc.platform.vehicle.pojo;
...
@@ -2,6 +2,8 @@ package com.xxfc.platform.vehicle.pojo;
import
lombok.Data
;
import
lombok.Data
;
import
java.math.BigDecimal
;
@Data
@Data
public
class
AddOrUpdateAccompanyingItem
{
public
class
AddOrUpdateAccompanyingItem
{
...
@@ -17,6 +19,7 @@ public class AddOrUpdateAccompanyingItem {
...
@@ -17,6 +19,7 @@ public class AddOrUpdateAccompanyingItem {
*/
*/
private
Integer
type
;
private
Integer
type
;
private
BigDecimal
price
;
/**
/**
* 备注
* 备注
...
...
xx-vehicle/xx-vehicle-server/src/main/java/com/xxfc/platform/vehicle/mapper/AccompanyingItemMapper.java
View file @
ea373242
...
@@ -12,7 +12,4 @@ public interface AccompanyingItemMapper extends Mapper<AccompanyingItem> {
...
@@ -12,7 +12,4 @@ public interface AccompanyingItemMapper extends Mapper<AccompanyingItem> {
public
List
<
AccompanyingItem
>
getByIdList
(
List
<
Integer
>
idList
);
public
List
<
AccompanyingItem
>
getByIdList
(
List
<
Integer
>
idList
);
public
Integer
updateStatusById
(
AccompanyingItem
accompanyingItem
);
}
}
xx-vehicle/xx-vehicle-server/src/main/resources/mapper/AccompanyingItemMapper.xml
View file @
ea373242
...
@@ -4,9 +4,9 @@
...
@@ -4,9 +4,9 @@
<select
id=
"getAllByPage"
parameterType=
"java.util.Map"
resultType=
"com.xxfc.platform.vehicle.entity.AccompanyingItem"
>
<select
id=
"getAllByPage"
parameterType=
"java.util.Map"
resultType=
"com.xxfc.platform.vehicle.entity.AccompanyingItem"
>
select
select
`id`, `type`, `name`, `remark`, `create_time`, `update_time`
`id`, `type`, `name`, `remark`,
`price`,
`create_time`, `update_time`
from
from
vehicle.accompanying_item
`accompanying_item`
where
where
1 = 1
1 = 1
<if
test=
"name != null and name != ''"
>
<if
test=
"name != null and name != ''"
>
...
@@ -24,9 +24,9 @@
...
@@ -24,9 +24,9 @@
<select
id=
"getByIdList"
parameterType=
"java.util.List"
resultType=
"com.xxfc.platform.vehicle.entity.AccompanyingItem"
>
<select
id=
"getByIdList"
parameterType=
"java.util.List"
resultType=
"com.xxfc.platform.vehicle.entity.AccompanyingItem"
>
select
select
`id`, `type`, `name`,
`remark`, `create_time`, `update_time`
`id`, `type`, `name`,
`price`,
`remark`, `create_time`, `update_time`
from
from
vehicle.
accompanying_item
accompanying_item
where `id` in
where `id` in
<foreach
collection=
"list"
index=
"i"
item=
"item"
open=
"("
close=
")"
separator=
","
>
<foreach
collection=
"list"
index=
"i"
item=
"item"
open=
"("
close=
")"
separator=
","
>
#{item}
#{item}
...
...
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