TestEntity.java 571 B

123456789101112131415161718192021222324252627282930313233
  1. package com.huimv.management.entity;
  2. import com.baomidou.mybatisplus.annotation.TableId;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import lombok.Data;
  5. import java.io.Serializable;
  6. /**
  7. * @author yinhao
  8. * @email yinhao@163.com
  9. * @date 2021-04-28 19:33:24
  10. */
  11. @Data
  12. @TableName("mgt_test")
  13. public class TestEntity implements Serializable {
  14. private static final long serialVersionUID = 1L;
  15. /**
  16. *
  17. */
  18. @TableId
  19. private String name;
  20. /**
  21. *
  22. */
  23. private String address;
  24. /**
  25. *
  26. */
  27. private Integer age;
  28. }