1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.mzl.flower.entity.payment;
|
| import com.baomidou.mybatisplus.annotation.TableField;
| import com.baomidou.mybatisplus.annotation.TableName;
| import com.mzl.flower.base.BaseAutoPhyEntity;
| import lombok.Data;
|
| @Data
| @TableName("t_cart")
| public class Cart extends BaseAutoPhyEntity {
|
| @TableField("flower_id")
| private Long flowerId;//商品id
|
| @TableField("num")
| private Integer num;//数量
|
| }
|
|