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

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.  *类名称: Topic<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 Topic {
  19. private int id;
  20. private String title;
  21. private String time;
  22. private int emid;
  23. private String content;
  24. /**
  25.  * 议题
  26.  */
  27. public Topic() {
  28. super();
  29. id=0;
  30. title="";
  31. time=new Time().getYMD();
  32. emid=0;
  33. content="";
  34. }
  35. public void setId(int id){
  36. this.id=id;
  37. }
  38. public int getId(){
  39. return id;
  40. }
  41. public void setTitle(String title){
  42. this.title=title;
  43. }
  44. public String getTitle(){
  45. return title;
  46. }
  47. public void setTime(String time){
  48. this.time=time;
  49. }
  50. public String getTime(){
  51. return time;
  52. }
  53. public void setEmid(int emid){
  54. this.emid=emid;
  55. }
  56. public int getEmid(){
  57. return emid;
  58. }
  59. public void setContent(String content){
  60. this.content=content;
  61. }
  62. public String getContent(){
  63. return content;
  64. }
  65. }