9003c8ec79e00294b6d42fae788cefd11752b134.svn-base 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. /**
  7. * entity:BisInspEmpwtprj
  8. *
  9. * @author lune
  10. * @date 2019-2-21
  11. */
  12. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  13. public class BisInspEmpwtprj extends BaseBean implements Serializable {
  14. private String empwtprjId;
  15. private String ptype;
  16. private String adCode;
  17. private String nm;
  18. private String stwktm;
  19. private String plantm;
  20. private Double estapp;
  21. private String visshdu;
  22. private String dirunder;
  23. private Date intm;
  24. private Date uptm;
  25. private String note;
  26. private Double pjLgtd;
  27. private Double pjLttd;
  28. private String empwtprjPid;
  29. public BisInspEmpwtprj() {
  30. }
  31. public String getEmpwtprjId() {
  32. return empwtprjId;
  33. }
  34. public void setEmpwtprjId(String empwtprjId) {
  35. this.empwtprjId = empwtprjId;
  36. }
  37. public String getPtype() {
  38. return ptype;
  39. }
  40. public void setPtype(String ptype) {
  41. this.ptype = ptype;
  42. }
  43. public String getAdCode() {
  44. return adCode;
  45. }
  46. public void setAdCode(String adCode) {
  47. this.adCode = adCode;
  48. }
  49. public String getNm() {
  50. return nm;
  51. }
  52. public void setNm(String nm) {
  53. this.nm = nm;
  54. }
  55. public String getStwktm() {
  56. return stwktm;
  57. }
  58. public void setStwktm(String stwktm) {
  59. this.stwktm = stwktm;
  60. }
  61. public String getPlantm() {
  62. return plantm;
  63. }
  64. public void setPlantm(String plantm) {
  65. this.plantm = plantm;
  66. }
  67. public Double getEstapp() {
  68. return estapp;
  69. }
  70. public void setEstapp(Double estapp) {
  71. this.estapp = estapp;
  72. }
  73. public String getVisshdu() {
  74. return visshdu;
  75. }
  76. public void setVisshdu(String visshdu) {
  77. this.visshdu = visshdu;
  78. }
  79. public String getDirunder() {
  80. return dirunder;
  81. }
  82. public void setDirunder(String dirunder) {
  83. this.dirunder = dirunder;
  84. }
  85. public Date getIntm() {
  86. return intm;
  87. }
  88. public void setIntm(Date intm) {
  89. this.intm = intm;
  90. }
  91. public Date getUptm() {
  92. return uptm;
  93. }
  94. public void setUptm(Date uptm) {
  95. this.uptm = uptm;
  96. }
  97. public String getNote() {
  98. return note;
  99. }
  100. public void setNote(String note) {
  101. this.note = note;
  102. }
  103. public Double getPjLgtd() {
  104. return pjLgtd;
  105. }
  106. public void setPjLgtd(Double pjLgtd) {
  107. this.pjLgtd = pjLgtd;
  108. }
  109. public Double getPjLttd() {
  110. return pjLttd;
  111. }
  112. public void setPjLttd(Double pjLttd) {
  113. this.pjLttd = pjLttd;
  114. }
  115. public String getEmpwtprjPid() {
  116. return empwtprjPid;
  117. }
  118. public void setEmpwtprjPid(String empwtprjPid) {
  119. this.empwtprjPid = empwtprjPid;
  120. }
  121. @Override
  122. public String toString() {
  123. return "BisInspEmpwtprj [" + "empwtprjId=" + empwtprjId + ", ptype=" + ptype + ", adCode=" + adCode + ", nm=" + nm + ", stwktm=" + stwktm + ", plantm=" + plantm + ", estapp=" + estapp + ", visshdu=" + visshdu + ", dirunder=" + dirunder + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", pjLgtd=" + pjLgtd + ", pjLttd=" + pjLttd + ", empwtprjPid=" + empwtprjPid + "]";
  124. }
  125. }