陶杰
2024-10-22 c144a01a7fff4e9bd169eb9d03b6ea58bc8bafb6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.mzl.flower.entity.flower;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.mzl.flower.base.BaseAutoPhyEntity;
import lombok.Data;
 
@Data
@TableName("t_flower_zone_map")
public class FlowerZoneMap extends BaseAutoPhyEntity {
 
    @TableField("flower_id")
    private Long flowerId;
 
    @TableField("zone_id")
    private Long zoneId;
 
    @TableField("rank")
    private Integer rank;
 
}