Merge branch 'feature/resource' of https://gitea.qinmian.online/CY/mcwl-ai into preview
commit
2ccd2c658a
|
@ -28,15 +28,11 @@ public class MallProduct extends BaseEntity {
|
||||||
* ID
|
* ID
|
||||||
*/
|
*/
|
||||||
@TableId
|
@TableId
|
||||||
private Long Id;
|
private Integer productId;
|
||||||
/**
|
/**
|
||||||
* 用户ID
|
* 用户ID
|
||||||
*/
|
*/
|
||||||
private Integer userId;
|
private Integer userId;
|
||||||
/**
|
|
||||||
* 商品ID
|
|
||||||
*/
|
|
||||||
private Integer productId;
|
|
||||||
/**
|
/**
|
||||||
* 商品名称
|
* 商品名称
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -6,9 +6,8 @@
|
||||||
|
|
||||||
|
|
||||||
<select id="selectMallProductById" resultType="java.lang.String">
|
<select id="selectMallProductById" resultType="java.lang.String">
|
||||||
select id,
|
select product_id,
|
||||||
user_id,
|
user_id,
|
||||||
product_id,
|
|
||||||
product_name,
|
product_name,
|
||||||
detail,
|
detail,
|
||||||
model,
|
model,
|
||||||
|
|
Loading…
Reference in New Issue