| package com.mzl.flower.entity.customer; | 
|   | 
|   | 
| import com.baomidou.mybatisplus.annotation.TableName; | 
| import com.mzl.flower.base.BaseAutoPhyEntity; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| @Data | 
| @TableName("t_browse_his") | 
| public class BrowseHistory extends BaseAutoPhyEntity { | 
|   | 
|     @ApiModelProperty("用户ID") | 
|     private String userId; | 
|   | 
|     @ApiModelProperty("鲜花ID") | 
|     private Long flowerId; | 
|   | 
|     @ApiModelProperty("浏览次数") | 
|     private int browseCount; | 
|   | 
| } |