Commit ea373242 authored by libin's avatar libin

随车物品

parent 2152ccbd
...@@ -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
......
...@@ -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>
......
...@@ -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;
......
...@@ -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;
/** /**
* 备注 * 备注
......
...@@ -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);
} }
...@@ -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}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment