Commit f87a92c7010b51de2626a3da8cb28a0fb94e989d
1 parent
76f3c2f6
update:支付修改
Showing
2 changed files
with
5 additions
and
0 deletions
etrade-order/src/main/java/com/diligrp/etrade/order/domain/ShopCartMessageVo.java
@@ -154,6 +154,9 @@ public class ShopCartMessageVo implements Serializable { | @@ -154,6 +154,9 @@ public class ShopCartMessageVo implements Serializable { | ||
154 | * 品类主键 | 154 | * 品类主键 |
155 | */ | 155 | */ |
156 | private Long categoryId; | 156 | private Long categoryId; |
157 | + | ||
158 | + /** 是否选中 */ | ||
159 | + private Integer checkFlag; | ||
157 | /** | 160 | /** |
158 | * 商品别名 | 161 | * 商品别名 |
159 | */ | 162 | */ |
@@ -358,4 +361,5 @@ public class ShopCartMessageVo implements Serializable { | @@ -358,4 +361,5 @@ public class ShopCartMessageVo implements Serializable { | ||
358 | public void setProductState(Integer productState) { | 361 | public void setProductState(Integer productState) { |
359 | this.productState = productState; | 362 | this.productState = productState; |
360 | } | 363 | } |
364 | + | ||
361 | } | 365 | } |
etrade-order/src/main/resources/com/diligrp/etrade/dao/mapper/shopCart/ShopCartMapper.xml
@@ -29,6 +29,7 @@ | @@ -29,6 +29,7 @@ | ||
29 | <result column="amount" jdbcType="BIGINT" property="amount"/> | 29 | <result column="amount" jdbcType="BIGINT" property="amount"/> |
30 | <result column="type" jdbcType="TINYINT" property="type"/> | 30 | <result column="type" jdbcType="TINYINT" property="type"/> |
31 | <result column="scm_modified_time" jdbcType="TIMESTAMP" property="modifiedTime"/> | 31 | <result column="scm_modified_time" jdbcType="TIMESTAMP" property="modifiedTime"/> |
32 | + <result column="check_flag" jdbcType="TINYINT" property="checkFlag"/> | ||
32 | </collection> | 33 | </collection> |
33 | </resultMap> | 34 | </resultMap> |
34 | 35 |