?? typegoods.java
字號(hào):
package com.accp.dao;
import java.util.HashSet;
import java.util.Set;
/**
* TypeGoods generated by MyEclipse Persistence Tools
*/
public class TypeGoods implements java.io.Serializable {
// Fields
private Integer tid;
private String tname;
private String tstandby1;
private String tstandby2;
private Set goodses = new HashSet(0);
// Constructors
/** default constructor */
public TypeGoods() {
}
/** minimal constructor */
public TypeGoods(String tname) {
this.tname = tname;
}
/** full constructor */
public TypeGoods(String tname, String tstandby1, String tstandby2,
Set goodses) {
this.tname = tname;
this.tstandby1 = tstandby1;
this.tstandby2 = tstandby2;
this.goodses = goodses;
}
// Property accessors
public Integer getTid() {
return this.tid;
}
public void setTid(Integer tid) {
this.tid = tid;
}
public String getTname() {
return this.tname;
}
public void setTname(String tname) {
this.tname = tname;
}
public String getTstandby1() {
return this.tstandby1;
}
public void setTstandby1(String tstandby1) {
this.tstandby1 = tstandby1;
}
public String getTstandby2() {
return this.tstandby2;
}
public void setTstandby2(String tstandby2) {
this.tstandby2 = tstandby2;
}
public Set getGoodses() {
return this.goodses;
}
public void setGoodses(Set goodses) {
this.goodses = goodses;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -