Bumf.java
上传用户:sxwtmm
上传日期:2022-08-11
资源大小:2183k
文件大小:2k
源码类别:

OA系统

开发平台:

Java

  1. /*
  2.  * Created on 2004-9-17
  3.  *
  4.  * To change the template for this generated file go to
  5.  * Window>Preferences>Java>Code Generation>Code and Comments
  6.  */
  7. package oa.data;
  8. import oa.sys.*;
  9. /**
  10.  ****************************************************
  11.  *类名称: Bumf<br>
  12.  *类功能: 公文(类型)<br>
  13.  *创建: 白伟明 2004年9月23日<br>
  14.  ****************************************************
  15.  * To change the template for this generated type comment go to
  16.  * Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
  17.  */
  18. public class Bumf {
  19. private int id;
  20. private int sendter;
  21. private int accepter;
  22. private String title;
  23. private String time;
  24. private String content;
  25. private String affix;
  26. private int examine;
  27. private int sign;
  28. /**
  29.  * 公文
  30.  */
  31. public Bumf() {
  32. super();
  33. id=0;
  34. sendter=0;
  35. accepter=0;
  36. title="";
  37. time=new Time().getYMD();
  38. content="";
  39. affix="";
  40. examine=0;
  41. sign=0;
  42. }
  43. public void setId(int id) {
  44. this.id = id;
  45. }
  46. public int getId() {
  47. return id;
  48. }
  49. public void setSendter(int sendter) {
  50. this.sendter = sendter;
  51. }
  52. public int getSendter() {
  53. return sendter;
  54. }
  55. public void setAccepter(int accepter) {
  56. this.accepter = accepter;
  57. }
  58. public int getAccepter() {
  59. return accepter;
  60. }
  61. public void setTitle(String title) {
  62. this.title = title;
  63. }
  64. public String getTitle() {
  65. return title;
  66. }
  67. public void setTime(String time) {
  68. this.time = time;
  69. }
  70. public String getTime() {
  71. return time;
  72. }
  73. public void setContent(String content) {
  74. this.content = content;
  75. }
  76. public String getContent() {
  77. return content;
  78. }
  79. public void setAffix(String affix) {
  80. this.affix = affix;
  81. }
  82. public String getAffix() {
  83. return affix;
  84. }
  85. public void setExamine(int examine) {
  86. this.examine = examine;
  87. }
  88. public int getExamine() {
  89. return examine;
  90. }
  91. public void setSign(int sign) {
  92. this.sign = sign;
  93. }
  94. public int getSign() {
  95. return sign;
  96. }
  97. }