12345678910111213141516171819202122232425262728293031 |
- package com.bofeng.entity;
- import com.baomidou.mybatisplus.annotations.TableField;
- import com.baomidou.mybatisplus.annotations.TableName;
- import lombok.Getter;
- import lombok.Setter;
- @Getter
- @Setter
- @TableName("tb_user_place")
- public class UserPlace {
- @TableField("user_id")
- private Long userId;
- @TableField("place_id")
- private Long placeId;
- @TableField("higher_id")
- private Long higherId;
- @TableField(exist = false)
- private String placeName;
- @TableField("user_type")
- private String userType;
- @TableField("be_active")
- private String beActive;
- }
|