382d307a19371ad9acd4139f9b237718f9cbe17e.svn-base 790 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.OlBisInspOrg;
  3. import java.io.Serializable;
  4. /**
  5. * Created by 61618 on 2019/2/21.
  6. */
  7. public class OlBisInspOrgDto extends OlBisInspOrg {
  8. private int count;
  9. private int onLineCount;
  10. private Integer onLineCountPc;
  11. public int getCount() {
  12. return count;
  13. }
  14. public void setCount(int count) {
  15. this.count = count;
  16. }
  17. public int getOnLineCount() {
  18. return onLineCount;
  19. }
  20. public void setOnLineCount(int onLineCount) {
  21. this.onLineCount = onLineCount;
  22. }
  23. public Integer getOnLineCountPc() {
  24. return onLineCountPc;
  25. }
  26. public void setOnLineCountPc(Integer onLineCountPc) {
  27. this.onLineCountPc = onLineCountPc;
  28. }
  29. }