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

📄 instore.java

📁 客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户
💻 JAVA
字号:
package com.qrsx.qrsxcrm.model;

import java.util.Date;
/**
 * 入库单实体      和采购单的关系   1-----1
 * @author Administrator
 *
 */
public class InStore {
	private String id;				//主键
	private String inStoreId;		//入库单号
	private String stockId;			//采购单号    Stock   
	private Date inStoreDate;		//入库日期
	
	private Stock stock;			//级联采购单对象

	/**
	 * @return the id
	 */
	public String getId() {
		return id;
	}

	/**
	 * @param id the id to set
	 */
	public void setId(String id) {
		this.id = id;
	}

	/**
	 * @return the inStoreDate
	 */
	public Date getInStoreDate() {
		return inStoreDate;
	}

	/**
	 * @param inStoreDate the inStoreDate to set
	 */
	public void setInStoreDate(Date inStoreDate) {
		this.inStoreDate = inStoreDate;
	}

	/**
	 * @return the inStoreId
	 */
	public String getInStoreId() {
		return inStoreId;
	}

	/**
	 * @param inStoreId the inStoreId to set
	 */
	public void setInStoreId(String inStoreId) {
		this.inStoreId = inStoreId;
	}

	/**
	 * @return the stock
	 */
	public Stock getStock() {
		return stock;
	}

	/**
	 * @param stock the stock to set
	 */
	public void setStock(Stock stock) {
		this.stock = stock;
	}

	/**
	 * @return the stockId
	 */
	public String getStockId() {
		return stockId;
	}

	/**
	 * @param stockId the stockId to set
	 */
	public void setStockId(String stockId) {
		this.stockId = stockId;
	}

	
}

⌨️ 快捷键说明

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