90e16e217a2c001d1b27e18734f52652
来自「客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户」· 代码 · 共 93 行
TXT
93 行
/**
*
*/
package com.qrsx.qrsxcrm.form;
import org.apache.struts.action.ActionForm;
/**
* @author Administrator
*
*/
public class ListForm extends ActionForm
{
private String id; //主键
private String productionId; //订单明细产品(一对一)
private String amount; //产品数量
private String price; //产品单价
private String sum; //总金额
private String orderId; //对应的订单(多对一)
/**
* @return the amount
*/
public String getAmount() {
return amount;
}
/**
* @param amount the amount to set
*/
public void setAmount(String amount) {
this.amount = amount;
}
/**
* @return the id
*/
public String getId() {
return id;
}
/**
* @param id the id to set
*/
public void setId(String id) {
this.id = id;
}
/**
* @return the orderId
*/
public String getOrderId() {
return orderId;
}
/**
* @param orderId the orderId to set
*/
public void setOrderId(String orderId) {
this.orderId = orderId;
}
/**
* @return the price
*/
public String getPrice() {
return price;
}
/**
* @param price the price to set
*/
public void setPrice(String price) {
this.price = price;
}
/**
* @return the productionId
*/
public String getProductionId() {
return productionId;
}
/**
* @param productionId the productionId to set
*/
public void setProductionId(String productionId) {
this.productionId = productionId;
}
/**
* @return the sum
*/
public String getSum() {
return sum;
}
/**
* @param sum the sum to set
*/
public void setSum(String sum) {
this.sum = sum;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?