123456789101112131415161718192021222324252627282930313233 |
- package com.huimv.management.entity;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import lombok.Data;
- import java.io.Serializable;
- /**
- * @author yinhao
- * @email yinhao@163.com
- * @date 2021-04-28 19:33:24
- */
- @Data
- @TableName("mgt_test")
- public class TestEntity implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- *
- */
- @TableId
- private String name;
- /**
- *
- */
- private String address;
- /**
- *
- */
- private Integer age;
- }
|