studentactionform.java
来自「基于WEB的学生选课系统」· Java 代码 · 共 38 行
JAVA
38 行
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 + =
减小字号Ctrl + -
显示快捷键?