Compare commits

..

No commits in common. "efa88e9d7ad12f678b8b7dcbb8d9acfb6f65c393" and "effbb7f046008cf56c2e7da4f504bdb43c7e88a6" have entirely different histories.

2 changed files with 7 additions and 2 deletions

View File

@ -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;
/**
*
*/

View File

@ -6,8 +6,9 @@
<select id="selectMallProductById" resultType="java.lang.String">
select product_id,
select id,
user_id,
product_id,
product_name,
detail,
model,