package com.moral.monitor.entity.apientity; /** * Created by a on 2017/4/28. */ public class RepairQuery { int uid; int type; String key; int pageIndex ; int pageSize; public int getType() { return type; } public void setType(int type) { this.type = type; } public String getKey() { return key; } public void setKey(String key) { this.key = key; } public int getPageIndex() { return pageIndex; } public void setPageIndex(int pageIndex) { this.pageIndex = pageIndex; } public int getPageSize() { return pageSize; } public void setPageSize(int pageSize) { this.pageSize = pageSize; } public int getUid() { return uid; } public void setUid(int uid) { this.uid = uid; } }