陶杰
2024-10-10 c3910a68f8c6a71c9e2dd73f6cdc9df2d89637e9
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.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.mzl.flower.base.BaseNoIdEntity;
import lombok.Data;
 
@Data
@TableName("t_flower_markup_ps")
public class FlowerMarkupPs extends BaseNoIdEntity {
    @TableId(value = "id")
    private Long id;
 
    @TableField("name")
    private String name;
 
    @TableField("tel")
    private String tel;
 
}