Browse Source

Initial commit

main
adiao 3 years ago
parent
commit
1a9f2bbcd3
  1. 14
      src/main/java/BeanScope/UserDaoImple.java

14
src/main/java/BeanScope/UserDaoImple.java

@ -19,18 +19,20 @@ import lombok.Setter;
@Setter @Setter
public abstract class UserDaoImple implements DbDao { public abstract class UserDaoImple implements DbDao {
// fist, This is the structure of the class // fist, This is the structure of the class
private Integer integer;
// class id; // class id;
private String u_name; private Integer integer;
// class String type, and the is U_name; // class String type, and the is U_name;
private String u_sex; private String u_name;
// class String type, and the is U_sex; // class String type, and the is U_sex;
private String u_author; private String u_sex;
// class String type, and the is U_author; // class String type, and the is U_author;
private String u_address; private String u_author;
// class String type, and the is U_address; // class String type, and the is U_address;
private String u_about_info; private String u_address;
// class String type, and the is U_about_info; // class String type, and the is U_about_info;
private String u_about_info;
@Override @Override
public void findDbAll() { public void findDbAll() {

Loading…
Cancel
Save