package com.nanjing.water.po; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; @Data @TableName(value = "user", schema = "public") public class UserPO { @TableId(type = IdType.ASSIGN_ID) private Long id; @TableField("name") private String name; @TableField("age") private Integer age; @TableField("email") private String email; }