📄 protype.java
字号:
package protype;public class Protype{ private String TypeId; private String TypeName; Protype(String TypeId,String TypeName) { this.TypeId = TypeId; this.TypeName = TypeName; } public void setTypeId(String newTypeId){ this.TypeId = newTypeId; } public String getTypeId(){ return TypeId; } public void setTypeName(String newTypeName) { this.TypeName = newTypeName; } public String getTypeName() { return TypeName; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -