📄 teststore01.java
字号:
package connections;
public class TestStore01 {
public static void main(String[] args) {
String description = "Bricks & Morter";
int typeId = 1;
String address1 = "123 E. Bijou St.";
String address2 = "";
String city = "Colorado Springs";
String postalCode = "80903";
Store01 store = new Store01(description, typeId, address1,
address2, city, postalCode);
boolean result = store.create();
if (result) {
System.out.println("Store created successfully");
} else {
System.out.println("Store NOT created");
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -