?? account.java
字號:
package org.langsin.computer.vo;
/**
* Account generated by MyEclipse - Hibernate Tools
*/
@SuppressWarnings("serial")
public class Account implements java.io.Serializable {
// Fields
private Integer acountid;
private Customer customer;
// Constructors
/** default constructor */
public Account() {
}
/** full constructor */
public Account(Customer customer) {
this.customer = customer;
}
// Property accessors
public Integer getAcountid() {
return this.acountid;
}
public void setAcountid(Integer acountid) {
this.acountid = acountid;
}
public Customer getCustomer() {
return this.customer;
}
public void setCustomer(Customer customer) {
this.customer = customer;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -