DocumentActionForm.java
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:2k
源码类别:

OA系统

开发平台:

Java

  1. package com.bjsxt.oa.web.forms;
  2. import java.util.Date;
  3. import java.util.HashMap;
  4. import java.util.Map;
  5. import org.apache.struts.action.ActionForm;
  6. import org.apache.struts.upload.FormFile;
  7. public class DocumentActionForm extends ActionForm {
  8. private int id;
  9. /**
  10.  * 标题
  11.  */
  12. private String title;
  13. /**
  14.  * 描述
  15.  */
  16. private String description;
  17. /**
  18.  * 公文内容,即上传文件的内容,
  19.  * 这些上传文件的内容将会被保存到数据库
  20.  */
  21. private FormFile contentFile;
  22. /**
  23.  * 创建者
  24.  * @hibernate.many-to-one
  25.  */
  26. private int creatorId;
  27. /**
  28.  * 创建时间
  29.  */
  30. private Date createTime;
  31. /**
  32.  * 公文所走的流程
  33.  */
  34. private int workflowId;
  35. /**
  36.  * 下一步流向的名称
  37.  */
  38. private String transitionName;
  39. private String approveInfo;
  40. private Map props = new HashMap();
  41. public FormFile getContentFile() {
  42. return contentFile;
  43. }
  44. public void setContentFile(FormFile contentFile) {
  45. this.contentFile = contentFile;
  46. }
  47. public Date getCreateTime() {
  48. return createTime;
  49. }
  50. public void setCreateTime(Date createTime) {
  51. this.createTime = createTime;
  52. }
  53. public int getCreatorId() {
  54. return creatorId;
  55. }
  56. public void setCreatorId(int creatorId) {
  57. this.creatorId = creatorId;
  58. }
  59. public String getDescription() {
  60. return description;
  61. }
  62. public void setDescription(String description) {
  63. this.description = description;
  64. }
  65. public int getId() {
  66. return id;
  67. }
  68. public void setId(int id) {
  69. this.id = id;
  70. }
  71. public String getTitle() {
  72. return title;
  73. }
  74. public void setTitle(String title) {
  75. this.title = title;
  76. }
  77. public int getWorkflowId() {
  78. return workflowId;
  79. }
  80. public void setWorkflowId(int workflowId) {
  81. this.workflowId = workflowId;
  82. }
  83. public String getTransitionName() {
  84. return transitionName;
  85. }
  86. public void setTransitionName(String transitionName) {
  87. this.transitionName = transitionName;
  88. }
  89. public String getApproveInfo() {
  90. return approveInfo;
  91. }
  92. public void setApproveInfo(String approveInfo) {
  93. this.approveInfo = approveInfo;
  94. }
  95. public Map getProps() {
  96. return props;
  97. }
  98. public void setProps(Map props) {
  99. this.props = props;
  100. }
  101. }