| package com.mzl.flower.entity.customer; | 
|   | 
|   | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import com.mzl.flower.base.BaseAutoEntity; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| @Data | 
| @TableName("t_collect_flower") | 
| public class Collect extends BaseAutoEntity { | 
|   | 
|     @ApiModelProperty("用户ID") | 
|     private String userId; | 
|   | 
|     @ApiModelProperty("鲜花花ID") | 
|     private Long flowerId; | 
|   | 
| } |