This commit is contained in:
Cauchy
2023-10-12 16:38:30 +08:00
parent 9978724a5d
commit 5c2cc8529b
17 changed files with 106 additions and 99 deletions

View File

@@ -24,11 +24,13 @@ public class BookClockInChatEntity implements Serializable {
//子对话开启的层数
private Integer fid;
//回复于某人id
private Integer pUserId;
@TableField("p_user_id")
private Integer puserId;
private String content;
private Integer pChatId;
@TableField("p_chat_id")
private Integer pchatId;
private Date createTime;

View File

@@ -35,7 +35,7 @@ public class OrderCartEntity implements Serializable {
/**
* 套装参数
*/
private Integer proudictBook;
private Integer productBook;
/**
* 商品数量
*/

View File

@@ -6,8 +6,6 @@ import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
@Data
@@ -24,13 +22,13 @@ public class ShopProductToLabelEntity {
@TableField("del_flag")
@TableLogic
private Integer delFlag;
private Integer delFlag;
/**
* 不存入数据库,返回商品详情
*/
@TableField(exist = false)
private List<ShopProductEntity> shopproudicts;
private List<ShopProductEntity> shopProducts;
@TableField(exist = false)
private List<Object> shopp;

View File

@@ -33,8 +33,8 @@ public class UserRecordEntity {
@TableField("orderCode")
private String orderCode;
@TableField("proudict_id")
private Integer proudictId;
@TableField("product_id")
private Integer productId;
//订单号
@TableField("orderSn")
private String orderSn;