?? sequencebybranch.java
字號:
package Pcrd.Subscription.Entities;
import java.io.Serializable;
import java.math.BigDecimal;
import java.sql.Date;
import javax.persistence.Column;
import javax.persistence.EmbeddedId;
import javax.persistence.Entity;
import javax.persistence.Table;
@Entity
@Table(name="SEQUENCE_BY_BRANCH")
public class SequenceByBranch implements Serializable {
@EmbeddedId
private SequenceByBranchPK pk;
@Column(name="INCREMENT_BY")
private BigDecimal incrementBy;
@Column(name="SEQ_START_WITH")
private BigDecimal seqStartWith;
@Column(name="SEQ_MIN_VAL")
private BigDecimal seqMinVal;
@Column(name="SEQ_MAX_VAL")
private BigDecimal seqMaxVal;
@Column(name="SEQ_CURRENT_VAL")
private BigDecimal seqCurrentVal;
@Column(name="USER_CREATE")
private String userCreate;
@Column(name="DATE_CREATE")
private Date dateCreate;
@Column(name="USER_MODIF")
private String userModif;
@Column(name="DATE_MODIF")
private Date dateModif;
private static final long serialVersionUID = 1L;
public SequenceByBranch() {
super();
}
public SequenceByBranchPK getPk() {
return this.pk;
}
public void setPk(SequenceByBranchPK pk) {
this.pk = pk;
}
public BigDecimal getIncrementBy() {
return this.incrementBy;
}
public void setIncrementBy(BigDecimal incrementBy) {
this.incrementBy = incrementBy;
}
public BigDecimal getSeqStartWith() {
return this.seqStartWith;
}
public void setSeqStartWith(BigDecimal seqStartWith) {
this.seqStartWith = seqStartWith;
}
public BigDecimal getSeqMinVal() {
return this.seqMinVal;
}
public void setSeqMinVal(BigDecimal seqMinVal) {
this.seqMinVal = seqMinVal;
}
public BigDecimal getSeqMaxVal() {
return this.seqMaxVal;
}
public void setSeqMaxVal(BigDecimal seqMaxVal) {
this.seqMaxVal = seqMaxVal;
}
public BigDecimal getSeqCurrentVal() {
return this.seqCurrentVal;
}
public void setSeqCurrentVal(BigDecimal seqCurrentVal) {
this.seqCurrentVal = seqCurrentVal;
}
public String getUserCreate() {
return this.userCreate;
}
public void setUserCreate(String userCreate) {
this.userCreate = userCreate;
}
public Date getDateCreate() {
return this.dateCreate;
}
public void setDateCreate(Date dateCreate) {
this.dateCreate = dateCreate;
}
public String getUserModif() {
return this.userModif;
}
public void setUserModif(String userModif) {
this.userModif = userModif;
}
public Date getDateModif() {
return this.dateModif;
}
public void setDateModif(Date dateModif) {
this.dateModif = dateModif;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -