package com.yanzuoguang.wxxcx.operation.select; import com.yanzuoguang.wxxcx.operation.vo.LogDataList; import com.yanzuoguang.wxxcx.base.WxXcxResponseBaseError; import java.util.List; /*** * 返回值 * * @author:heyanou */ public class WxOperationRealtimelogSearchDataRes extends WxXcxResponseBaseError { /** * <p> * 描述:返回的日志数据和日志条数总量 * </p> */ private Object data; /** * <p> * 描述:返回的日志数据列表 * </p> */ private List<LogDataList> list; public Object getData() { return data; } public void setData(Object data) { this.data = data; } public List<LogDataList> getList() { return list; } public void setList(List<LogDataList> list) { this.list = list; } }