📄 fee.java
字号:
package smstimer;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2004</p> * <p>Company: </p> * @author unascribed * @version 1.0 */public class Fee { public static String service_id = ""; public static String fee_type = ""; public static String fee_code = ""; public static String service_code = ""; public Fee(String service_id,String service_code,String fee_type,String fee_code) { this.service_id = service_id; this.service_code = service_code; this.fee_type = fee_type; this.fee_code = fee_code; } public static void main(String[] args) { //Fee fee1 = new Fee(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -