📄 statisticsitem.java
字号:
package com.bluesky.elecall.domain.search;import java.util.Map;/* * common item */public class StatisticsItem { private String id; private String name; private long count; public StatisticsItem() { } public StatisticsItem(String id, String name, long count) { this.id = id; this.name = name; this.count = count; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public long getCount() { return count; } public void setCount(long count) { this.count = count; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -