📄 studentactionform.java
字号:
package com.student.actionform;import org.apache.struts.action.*;import javax.servlet.http.*;import java.util.*;import com.student.vo.User;import com.student.util.FillDataUtil;import com.student.vo.BaseInfo;public class StudentActionForm extends ActionForm { private java.util.List students = new FillDataUtil(BaseInfo.class); private String operation; private Long deleteUID = null; public StudentActionForm() { operation="display"; } public List getStudents() { return students; } public void setStudents(List students) { this.students = students; } public String getOperation() { return operation; } public void setOperation(String operation) { this.operation = operation; } public Long getDeleteUID() { return deleteUID; } public void setDeleteUID(Long deleteUID) { this.deleteUID = deleteUID; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -