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

📄 expenses.java

📁 基于jbpm开发的实例
💻 JAVA
字号:
package com.flowdemo.po;

/**
 * Expenses entity.
 * 
 * @author MyEclipse Persistence Tools
 */

public class Expenses implements java.io.Serializable {

	// Fields

	private Integer expenseId;
	private Users users;
	private String processInstanceId;
	private String money;
	private String reason;

	// Constructors

	/** default constructor */
	public Expenses() {
	}

	/** minimal constructor */
	public Expenses(Users users, String money, String reason) {
		this.users = users;
		this.money = money;
		this.reason = reason;
	}

	/** full constructor */
	public Expenses(Users users, String processInstanceId, String money,
			String reason) {
		this.users = users;
		this.processInstanceId = processInstanceId;
		this.money = money;
		this.reason = reason;
	}

	// Property accessors

	public Integer getExpenseId() {
		return this.expenseId;
	}

	public void setExpenseId(Integer expenseId) {
		this.expenseId = expenseId;
	}

	public Users getUsers() {
		return this.users;
	}

	public void setUsers(Users users) {
		this.users = users;
	}

	public String getProcessInstanceId() {
		return this.processInstanceId;
	}

	public void setProcessInstanceId(String processInstanceId) {
		this.processInstanceId = processInstanceId;
	}

	public String getMoney() {
		return this.money;
	}

	public void setMoney(String money) {
		this.money = money;
	}

	public String getReason() {
		return this.reason;
	}

	public void setReason(String reason) {
		this.reason = reason;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -