diff --git a/src/main/java/com/entity/TestEntity.java b/src/main/java/com/entity/TestEntity.java new file mode 100644 index 0000000..82b5674 --- /dev/null +++ b/src/main/java/com/entity/TestEntity.java @@ -0,0 +1,36 @@ +package com.entity; + +/** + * @ClassName TestEntity + * @Description TODO + * @Author YHT + * @Date 2021/5/31 15:16 + */ +public class TestEntity { + private Integer id; + private String num; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getNum() { + return num; + } + + public void setNum(String num) { + this.num = num; + } + + @Override + public String toString() { + return "TestEntity{" + + "id=" + id + + ", num='" + num + '\'' + + '}'; + } +} \ No newline at end of file