📄 salchanceform.java
字号:
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package org.jb.y2t308.team3.web.form;
import org.apache.struts.action.ActionForm;
import org.jb.common.web.form.BaseForm;
import org.jb.y2t308.team3.entity.SalChance;
/**
* MyEclipse Struts Creation date: 02-11-2009
*
* XDoclet definition:
*
* @struts.form name="SaleChanceForm"
*/
@SuppressWarnings("serial")
public class SalChanceForm extends BaseForm {
/*
* 定义 销售机会 对象
*/
private SalChance salChance = new SalChance();
/**
* @return the salChance
*/
public SalChance getSalChance() {
return salChance;
}
/**
* @param salChance the salChance to set
*/
public void setSalChance(SalChance salChance) {
this.salChance = salChance;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -