BusinessPgGopsPlanPageParam.java 771 B

123456789101112131415161718192021222324252627282930313233343536
  1. package com.chinaitop.depot.pg.param;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. @Getter
  6. @Setter
  7. public class BusinessPgGopsPlanPageParam {
  8. /** 当前页 */
  9. @ApiModelProperty(value = "当前页码")
  10. private Integer current;
  11. /** 每页条数 */
  12. @ApiModelProperty(value = "每页条数")
  13. private Integer size;
  14. @ApiModelProperty(value = "库区名称")
  15. private String orgName;
  16. @ApiModelProperty(value = "库区Id")
  17. private String orgId;
  18. @ApiModelProperty(value = "企业名称")
  19. private String unitName;
  20. /** 性质id */
  21. @ApiModelProperty(value = "性质id")
  22. private String grainNatureId;
  23. @ApiModelProperty(value = "年度")
  24. private String year;
  25. }