Compare commits

...

2 Commits

Author SHA1 Message Date
ChenYan 4c4f03583a build:依赖 工具 2025-01-02 17:01:52 +08:00
ChenYan 51055443c5 build:依赖 工具 2025-01-02 14:56:54 +08:00
3 changed files with 2 additions and 9 deletions

View File

@ -22,7 +22,6 @@ public class BaseEntity implements Serializable
/** 搜索值 */ /** 搜索值 */
@TableField(exist = false) @TableField(exist = false)
@JsonIgnore @JsonIgnore
@TableField(exist = false)
private String searchValue; private String searchValue;
/** 创建者 */ /** 创建者 */
@ -43,7 +42,6 @@ public class BaseEntity implements Serializable
private String remark; private String remark;
/** 请求参数 */ /** 请求参数 */
@TableField(exist = false)
@JsonInclude(JsonInclude.Include.NON_EMPTY) @JsonInclude(JsonInclude.Include.NON_EMPTY)
@TableField(exist = false) @TableField(exist = false)
private Map<String, Object> params; private Map<String, Object> params;

View File

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

View File

@ -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,