| 123456789101112131415161718192021222324252627282930313233343536373839 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.dcproj.model.OlBisInspOrg;
- import java.io.Serializable;
- /**
- * Created by 61618 on 2019/2/21.
- */
- public class OlBisInspOrgDto extends OlBisInspOrg {
- private int count;
- private int onLineCount;
- private Integer onLineCountPc;
- public int getCount() {
- return count;
- }
- public void setCount(int count) {
- this.count = count;
- }
- public int getOnLineCount() {
- return onLineCount;
- }
- public void setOnLineCount(int onLineCount) {
- this.onLineCount = onLineCount;
- }
- public Integer getOnLineCountPc() {
- return onLineCountPc;
- }
- public void setOnLineCountPc(Integer onLineCountPc) {
- this.onLineCountPc = onLineCountPc;
- }
- }
|