20b4d4a7af2f001d15b3d293b7672d16
来自「客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户」· 代码 · 共 68 行
TXT
68 行
/**
*
*/
package com.qrsx.qrsxcrm.form;
import org.apache.struts.action.ActionForm;
/**
* @author Administrator
*
*/
@SuppressWarnings("serial")
public class InStoreForm extends ActionForm
{
private String id; //主键
private String inStoreId; //入库单号
private String stockId; //采购单号 Stock
private String inStoreDate; //入库日期
/**
* @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 String getInStoreDate() {
return inStoreDate;
}
/**
* @param inStoreDate the inStoreDate to set
*/
public void setInStoreDate(String 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 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 + =
减小字号Ctrl + -
显示快捷键?