fee.java
来自「短信定制软件」· Java 代码 · 共 26 行
JAVA
26 行
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 + =
减小字号Ctrl + -
显示快捷键?