⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sequencebybranch.java

📁 THIS IS A FINANCIAL BANK APPLICATION
💻 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 + -