Eminfo.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.  * @author Administrator
  11.  *
  12.  * To change the template for this generated type comment go to
  13.  * Window>Preferences>Java>Code Generation>Code and Comments
  14.  */
  15. public class Eminfo {
  16. private int id;
  17. private String name;
  18. private int sex;
  19. private String birthday;
  20. private String learn;
  21. private String post;
  22. private String deid;
  23. private String jobid;
  24. private String tel;
  25. private String addr;
  26. private String stateid;
  27. /**
  28.  * 员工信息
  29.  */
  30. public Eminfo() {
  31. super();
  32. id=0;
  33. name="";
  34. sex=0;
  35. birthday=new Time().getYMD();
  36. learn="";
  37. post="";
  38. deid="";
  39. jobid="";
  40. tel="";
  41. addr="";
  42. stateid="";
  43. }
  44. public void setId(int id){
  45. this.id=id;
  46. }
  47. public int getId(){
  48. return id;
  49. }
  50. public void setName(String name){
  51. this.name=name;
  52. }
  53. public String getName(){
  54. return name;
  55. }
  56. public void setSex(int sex){
  57. this.sex=sex;
  58. }
  59. public int getSex(){
  60. return sex;
  61. }
  62. public void setBirthday(String birthday){
  63. this.birthday=birthday;
  64. }
  65. public String getBirthday(){
  66. return birthday;
  67. }
  68. public void setLearn(String learn){
  69. this.learn=learn;
  70. }
  71. public String getLearn(){
  72. return learn;
  73. }
  74. public void setPost(String post){
  75. this.post=post;
  76. }
  77. public String getPost(){
  78. return post;
  79. }
  80. public void setDepartment(String deid){
  81. this.deid=deid;
  82. }
  83. public String getDepartment(){
  84. return deid;
  85. }
  86. public void setJob(String jobid){
  87. this.jobid=jobid;
  88. }
  89. public String getJob(){
  90. return jobid;
  91. }
  92. public void setTel(String tel){
  93. this.tel=tel;
  94. }
  95. public String getTel(){
  96. return tel;
  97. }
  98. public void setAddr(String addr){
  99. this.addr=addr;
  100. }
  101. public String getAddr(){
  102. return addr;
  103. }
  104. public void setState(String stateid){
  105. this.stateid=stateid;
  106. }
  107. public String getState(){
  108. return stateid;
  109. }
  110. }