📄 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(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -