b9cc291a1d98a841f8c96af29bc92c4d127f5f01.svn-base 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. /**
  7. * entity:BisInspOrgIssue
  8. *
  9. * @author lune
  10. * @date 2019-9-7
  11. */
  12. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  13. public class BisInspOrgIssue extends BaseBean implements Serializable {
  14. @ApiModelProperty("主键id")
  15. private String id;
  16. @ApiModelProperty("机构id")
  17. private String orgId;
  18. @ApiModelProperty("1表示使用绑定标准,0表示使用水利部统一标准")
  19. private String bind;
  20. @ApiModelProperty("问题标准类型,如1水库,6水闸等")
  21. private String type;
  22. public String getId() {
  23. return id;
  24. }
  25. public void setId(String id) {
  26. this.id = id;
  27. }
  28. public BisInspOrgIssue() {
  29. }
  30. @Override
  31. public String getOrgId() {
  32. return orgId;
  33. }
  34. @Override
  35. public void setOrgId(String orgId) {
  36. this.orgId = orgId;
  37. }
  38. public String getBind() {
  39. return bind;
  40. }
  41. public void setBind(String bind) {
  42. this.bind = bind;
  43. }
  44. public String getType() {
  45. return type;
  46. }
  47. public void setType(String type) {
  48. this.type = type;
  49. }
  50. @Override
  51. public String toString() {
  52. return "BisInspOrgIssue [" + "orgId=" + orgId + ", bind=" + bind + ", type=" + type + "]";
  53. }
  54. }