📄 abstracttwmsection.java
字号:
package com.waimai.domain;
import java.util.HashSet;
import java.util.Set;
/**
* AbstractTWmSection generated by MyEclipse - Hibernate Tools
*/
public abstract class AbstractTWmSection extends com.waimai.domain.BaseDomain implements java.io.Serializable {
// Fields
private Integer id;
private Integer fprovince;
private Integer fcity;
private Integer fsection;
private Integer froad;
private String fdetail;
private String fbusLine;
private String fpiloting;
private Integer fcrossSectionId;
private Set TWmFanguans = new HashSet(0);
// Constructors
/** default constructor */
public AbstractTWmSection() {
}
/** full constructor */
public AbstractTWmSection(Integer fprovince, Integer fcity, Integer fsection, Integer froad, String fdetail, String fbusLine, String fpiloting, Integer fcrossSectionId, Set TWmFanguans) {
this.fprovince = fprovince;
this.fcity = fcity;
this.fsection = fsection;
this.froad = froad;
this.fdetail = fdetail;
this.fbusLine = fbusLine;
this.fpiloting = fpiloting;
this.fcrossSectionId = fcrossSectionId;
this.TWmFanguans = TWmFanguans;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getFprovince() {
return this.fprovince;
}
public void setFprovince(Integer fprovince) {
this.fprovince = fprovince;
}
public Integer getFcity() {
return this.fcity;
}
public void setFcity(Integer fcity) {
this.fcity = fcity;
}
public Integer getFsection() {
return this.fsection;
}
public void setFsection(Integer fsection) {
this.fsection = fsection;
}
public Integer getFroad() {
return this.froad;
}
public void setFroad(Integer froad) {
this.froad = froad;
}
public String getFdetail() {
return this.fdetail;
}
public void setFdetail(String fdetail) {
this.fdetail = fdetail;
}
public String getFbusLine() {
return this.fbusLine;
}
public void setFbusLine(String fbusLine) {
this.fbusLine = fbusLine;
}
public String getFpiloting() {
return this.fpiloting;
}
public void setFpiloting(String fpiloting) {
this.fpiloting = fpiloting;
}
public Integer getFcrossSectionId() {
return this.fcrossSectionId;
}
public void setFcrossSectionId(Integer fcrossSectionId) {
this.fcrossSectionId = fcrossSectionId;
}
public Set getTWmFanguans() {
return this.TWmFanguans;
}
public void setTWmFanguans(Set TWmFanguans) {
this.TWmFanguans = TWmFanguans;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -