Compare commits
No commits in common. "efa88e9d7ad12f678b8b7dcbb8d9acfb6f65c393" and "effbb7f046008cf56c2e7da4f504bdb43c7e88a6" have entirely different histories.
efa88e9d7a
...
effbb7f046
|
@ -28,11 +28,15 @@ public class MallProduct extends BaseEntity {
|
|||
* ID
|
||||
*/
|
||||
@TableId
|
||||
private Integer productId;
|
||||
private Long Id;
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
private Integer userId;
|
||||
/**
|
||||
* 商品ID
|
||||
*/
|
||||
private Integer productId;
|
||||
/**
|
||||
* 商品名称
|
||||
*/
|
||||
|
|
|
@ -6,8 +6,9 @@
|
|||
|
||||
|
||||
<select id="selectMallProductById" resultType="java.lang.String">
|
||||
select product_id,
|
||||
select id,
|
||||
user_id,
|
||||
product_id,
|
||||
product_name,
|
||||
detail,
|
||||
model,
|
||||
|
|
Loading…
Reference in New Issue