feat(Java_SpringExample): AspectJ代码提交,代码报错未解决

This commit is contained in:
huangzj
2020-05-26 21:57:55 +08:00
parent 456f0be8b5
commit e65411be30
24 changed files with 852 additions and 18 deletions
+35
View File
@@ -0,0 +1,35 @@
package logic.sensitive;
public class Test {
private String phone;
private int num;
private String email;
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public int getNum() {
return num;
}
public void setNum(int num) {
this.num = num;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
}