net.wicp.tams.common.metrics.entity.statisticbean.StatisticCounterBean Maven / Gradle / Ivy
/*
* **********************************************************************
* Copyright (c) 2022 .
* All rights reserved.
* 项目名称:common
* 项目描述:公共的工具集
* 版权说明:本软件属andy.zhou([email protected])所有。
* ***********************************************************************
*/
package net.wicp.tams.common.metrics.entity.statisticbean;
import com.codahale.metrics.Counter;
public class StatisticCounterBean extends StatisticBean{
Counter counter;
public Counter getCounter() {
return counter;
}
public void setCounter(Counter counter) {
this.counter = counter;
}
}