Compare commits
No commits in common. "4c4f03583afa9ba082f9aea5cf3bbddb56c46cef" and "1a1803b9918a91c1845ffaef199fa648b729e075" have entirely different histories.
4c4f03583a
...
1a1803b991
|
@ -22,6 +22,7 @@ public class BaseEntity implements Serializable
|
|||
/** 搜索值 */
|
||||
@TableField(exist = false)
|
||||
@JsonIgnore
|
||||
@TableField(exist = false)
|
||||
private String searchValue;
|
||||
|
||||
/** 创建者 */
|
||||
|
@ -42,6 +43,7 @@ public class BaseEntity implements Serializable
|
|||
private String remark;
|
||||
|
||||
/** 请求参数 */
|
||||
@TableField(exist = false)
|
||||
@JsonInclude(JsonInclude.Include.NON_EMPTY)
|
||||
@TableField(exist = false)
|
||||
private Map<String, Object> params;
|
||||
|
|
|
@ -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