inputtable.java

来自「一个汽车售后服务站的典型的进销管理系统,B/S模式的」· Java 代码 · 共 121 行

JAVA
121
字号
package com.xfaccp.form;

import java.util.HashSet;
import java.util.Set;

import com.xfaccp.base.BaseForm;

/**
 * InputTable generated by MyEclipse Persistence Tools
 */

public class InputTable extends BaseForm {

	// Fields

	 

	private StockTable stockTable;

	private String inputPer;

	private String inTableTime;

	private String inputTime;

	private String creater;

	private String sendGoodsPer;
	
	private int stockId;

	private Set inputAccessoryTables = new HashSet(0);
  
	// Constructors

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

	/** full constructor */
	public InputTable(StockTable stockTable, String inputPer,
			String inTableTime, String inputTime, String creater,int stockId,
			String sendGoodsPer, Set inputAccessoryTables) {
		this.stockTable = stockTable;
		this.inputPer = inputPer;
		this.inTableTime = inTableTime;
		this.stockId=stockId;
		this.inputTime = inputTime;
		this.creater = creater;
		this.sendGoodsPer = sendGoodsPer;
		this.inputAccessoryTables = inputAccessoryTables;
	}

	// Property accessors


	public StockTable getStockTable() {
		return this.stockTable;
	}

	public void setStockTable(StockTable stockTable) {
		this.stockTable = stockTable;
	}

	public String getInputPer() {
		return this.inputPer;
	}

	public void setInputPer(String inputPer) {
		this.inputPer = inputPer;
	}

	public String getInTableTime() {
		return this.inTableTime;
	}

	public void setInTableTime(String inTableTime) {
		this.inTableTime = inTableTime;
	}

	public String getInputTime() {
		return this.inputTime;
	}

	public void setInputTime(String inputTime) {
		this.inputTime = inputTime;
	}

	public String getCreater() {
		return this.creater;
	}

	public void setCreater(String creater) {
		this.creater = creater;
	}

	public String getSendGoodsPer() {
		return this.sendGoodsPer;
	}

	public void setSendGoodsPer(String sendGoodsPer) {
		this.sendGoodsPer = sendGoodsPer;
	}

	public Set getInputAccessoryTables() {
		return this.inputAccessoryTables;
	}

	public void setInputAccessoryTables(Set inputAccessoryTables) {
		this.inputAccessoryTables = inputAccessoryTables;
	}

	public int getStockId() {
		return stockId;
	}

	public void setStockId(int stockId) {
		this.stockId = stockId;
	}

}

⌨️ 快捷键说明

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