📄 billstate.java
字号:
package com.po;
import java.util.HashSet;
import java.util.Set;
/**
* BillState entity.
*
* @author MyEclipse Persistence Tools
*/
public class BillState implements java.io.Serializable {
// Fields
private Integer billStateId;
private String billStateName;
private Set billInfos = new HashSet(0);
// Constructors
/** default constructor */
public BillState() {
}
/** full constructor */
public BillState(String billStateName, Set billInfos) {
this.billStateName = billStateName;
this.billInfos = billInfos;
}
// Property accessors
public Integer getBillStateId() {
return this.billStateId;
}
public void setBillStateId(Integer billStateId) {
this.billStateId = billStateId;
}
public String getBillStateName() {
return this.billStateName;
}
public void setBillStateName(String billStateName) {
this.billStateName = billStateName;
}
public Set getBillInfos() {
return this.billInfos;
}
public void setBillInfos(Set billInfos) {
this.billInfos = billInfos;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -