Compare commits
No commits in common. 'main' and 'branch_zyx' have entirely different histories.
main
...
branch_zyx
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,4 +1,4 @@
|
||||
driver=com.mysql.cj.jdbc.Driver
|
||||
url=jdbc:mysql://localhost:3306/supermarket?serverTimezone=UTC
|
||||
user=root
|
||||
password=123456
|
||||
password=040820
|
||||
@ -1,4 +1,4 @@
|
||||
driver=com.mysql.cj.jdbc.Driver
|
||||
url=jdbc:mysql://localhost:3306/supermarket?serverTimezone=UTC
|
||||
user=root
|
||||
password=123456
|
||||
password=040820
|
||||
@ -1,4 +1,4 @@
|
||||
driver=com.mysql.cj.jdbc.Driver
|
||||
url=jdbc:mysql://localhost:3306/supermarket?serverTimezone=UTC
|
||||
user=root
|
||||
password=123456
|
||||
password=040820
|
||||
@ -1,18 +1,15 @@
|
||||
package com.lingnan.supermarket.dto.base;
|
||||
|
||||
// 封装对象的通用属性
|
||||
public class BaseDomain {
|
||||
|
||||
|
||||
private Integer id;
|
||||
|
||||
// 获取 id 属性的 getter 方法
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
// 设置 id 属性的 setter 方法
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,13 +1,13 @@
|
||||
package com.lingnan.supermarket.dto.base;
|
||||
|
||||
public class BsDomain {
|
||||
private String id;
|
||||
// 获取 id 属性的 getter 方法
|
||||
private String id;
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
// 设置 id 属性的 setter 方法
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
package com.lingnan.supermarket.utils;
|
||||
|
||||
//用于演示静态代码块的使用
|
||||
public class Test {
|
||||
|
||||
static {
|
||||
System.out.println("tasdasd."); // 打印一条测试信息
|
||||
System.out.println("tasdasd.");
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue