8d7a34181bd74f0e367c98ff95581b41605b1339.svn-base 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * BisInspOrgIssueParam
  9. *
  10. * @author lune
  11. * @date 2019-9-7
  12. */
  13. public class BisInspOrgIssueParam extends PageParam 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 BisInspOrgIssueParam() {
  23. }
  24. public String getId() {
  25. return id;
  26. }
  27. public void setId(String id) {
  28. this.id = id;
  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. }