849cfaf85b86c79ba50fb9dc0b045deaf2eecba2.svn-base 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. /**
  7. * entity:BisInspAllRlation
  8. *
  9. * @author lune
  10. * @date 2019-2-23
  11. */
  12. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  13. public class BisInspAllRlation extends BaseBean implements Serializable {
  14. @ApiModelProperty(value = "用户ID", name = "persid")
  15. private String persid;
  16. @ApiModelProperty(value = "督查组ID", name = "id")
  17. private String id;
  18. @ApiModelProperty(value = "用户类型(1:组长;2:组员;3:联络员;4:专家;11:前期专家;12:监管专家;13:计划专家;14:财务专家;15:质量专家;16:安全专家;19:助理;20:特派员)", name = "pertype")
  19. private String pertype;
  20. @ApiModelProperty(value="导入数据标记(1:新增;2:修改)",name="impData")
  21. private String impData;
  22. @ApiModelProperty("当前阶段状态:0-3专家,4是助理(交换意见稿),5是成果讨论阶段,6是中心修改阶段,7是司局修改阶段")
  23. private String dataStat;
  24. @ApiModelProperty("行政编码")
  25. private String adCode;
  26. private String type;
  27. public String getType() {
  28. return type;
  29. }
  30. public void setType(String type) {
  31. this.type = type;
  32. }
  33. public String getAdCode() {
  34. return adCode;
  35. }
  36. public void setAdCode(String adCode) {
  37. this.adCode = adCode;
  38. }
  39. public String getDataStat() {
  40. return dataStat;
  41. }
  42. public void setDataStat(String dataStat) {
  43. this.dataStat = dataStat;
  44. }
  45. public BisInspAllRlation() {
  46. }
  47. public String getPersid() {
  48. return persid;
  49. }
  50. public void setPersid(String persid) {
  51. this.persid = persid;
  52. }
  53. public String getId() {
  54. return id;
  55. }
  56. public void setId(String id) {
  57. this.id = id;
  58. }
  59. public String getPertype() {
  60. return pertype;
  61. }
  62. public void setPertype(String pertype) {
  63. this.pertype = pertype;
  64. }
  65. @Override
  66. public String toString() {
  67. return "BisInspAllRlation [" + "persid=" + persid + ", id=" + id + ", pertype=" + pertype + "]";
  68. }
  69. public String getImpData() {
  70. return impData;
  71. }
  72. public void setImpData(String impData) {
  73. this.impData = impData;
  74. }
  75. }