Info.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.  *类名称: Info<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 Info {
  19. private int id;
  20. private String title;
  21. private String time;
  22. private int sendter;
  23. private int accepter;
  24. private String content;
  25. private int news;
  26. /**
  27.  * 信息收发
  28.  */
  29. public Info() {
  30. super();
  31. id=0;
  32. title="";
  33. time=new Time().getYMDHMS();
  34. sendter=0;
  35. accepter=0;
  36. content="";
  37. news=0;
  38. }
  39. public void setId(int id) {
  40. this.id = id;
  41. }
  42. public int getId() {
  43. return id;
  44. }
  45. public void setTitle(String title) {
  46. this.title = title;
  47. }
  48. public String getTitle() {
  49. return title;
  50. }
  51. public void setTime(String time) {
  52. this.time = time;
  53. }
  54. public String getTime() {
  55. return time;
  56. }
  57. public void setSendter(int sendter) {
  58. this.sendter = sendter;
  59. }
  60. public int getSendter() {
  61. return sendter;
  62. }
  63. public void setAccepter(int accepter) {
  64. this.accepter = accepter;
  65. }
  66. public int getAccepter() {
  67. return accepter;
  68. }
  69. public void setContent(String content) {
  70. this.content = content;
  71. }
  72. public String getContent() {
  73. return content;
  74. }
  75. public void setNews(int news) {
  76. this.news= news;
  77. }
  78. public int getNews() {
  79. return news;
  80. }
  81. }