saleanalysisform.java
来自「客户关系管理系统主要管理新老客户的一些信息并可以发现潜在客户」· Java 代码 · 共 48 行
JAVA
48 行
package com.qrsx.qrsxcrm.form;
import org.apache.struts.action.ActionForm;
public class SaleAnalysisForm extends ActionForm {
private String radiosb;
private String orderRd;
private String shape;
/**
* @return the shape
*/
public String getShape() {
return shape;
}
/**
* @param shape the shape to set
*/
public void setShape(String shape) {
this.shape = shape;
}
/**
* @return the orderRd
*/
public String getOrderRd() {
return orderRd;
}
/**
* @param orderRd the orderRd to set
*/
public void setOrderRd(String orderRd) {
this.orderRd = orderRd;
}
/**
* @return the radiosb
*/
public String getRadiosb() {
return radiosb;
}
/**
* @param radiosb the radiosb to set
*/
public void setRadiosb(String radiosb) {
this.radiosb = radiosb;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?