?? customer.java
字號:
package com.xc.hotelmanager.hotel.model;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2006</p> * <p>Company: </p> * @author not attributable * @version 1.0 */import java.sql.Timestamp;import java.io.Serializable;public class Customer implements Serializable{ public Customer() { } String cid=null; String cname=null; String csex=null; String cstuts=null; String cnote=null; public String getCid(){ return cid; } public void setCid(String id){ this.cid=id; } public String getCname(){ return cname; } public void setCname(String name){ this.cname=name; } public String getCsex(){ return csex; } public void setCsex(String sex){ this.csex=sex; } public String getCstuts(){ return cstuts; } public void setCstuts(String stuts){ this.cstuts=stuts; } public String getCnote(){ return cnote; } public void setCnote(String note){ this.cnote=note; } public static void main(String[] args) { Customer cus = new Customer(); }}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -