📄 abstracttwmcaitype.java
字号:
package com.waimai.domain;
import java.util.HashSet;
import java.util.Set;
/**
* AbstractTWmCaitype generated by MyEclipse - Hibernate Tools
*/
public abstract class AbstractTWmCaitype extends com.waimai.domain.BaseDomain implements java.io.Serializable {
// Fields
private Integer id;
private String fname;
private Set TWmCaiyaos = new HashSet(0);
// Constructors
/** default constructor */
public AbstractTWmCaitype() {
}
/** full constructor */
public AbstractTWmCaitype(String fname, Set TWmCaiyaos) {
this.fname = fname;
this.TWmCaiyaos = TWmCaiyaos;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getFname() {
return this.fname;
}
public void setFname(String fname) {
this.fname = fname;
}
public Set getTWmCaiyaos() {
return this.TWmCaiyaos;
}
public void setTWmCaiyaos(Set TWmCaiyaos) {
this.TWmCaiyaos = TWmCaiyaos;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -