Merge remote-tracking branch 'origin/dev' into dev
commit
ebb4cc9f2e
@ -0,0 +1,18 @@
|
||||
package cn.estsh.i3plus.pojo.base.annotation;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
/**
|
||||
* @Description : 忽略生成日志
|
||||
* @Reference :
|
||||
* @Author : yunhao
|
||||
* @CreateDate : 2019-02-14 10:35
|
||||
* @Modify:
|
||||
**/
|
||||
@Target(ElementType.METHOD)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface AnnoIgnoreLog {
|
||||
}
|
@ -0,0 +1,33 @@
|
||||
package cn.estsh.i3plus.pojo.platform.bean;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
|
||||
/**
|
||||
* @Description : 测试类
|
||||
* @Reference :
|
||||
* @Author : yunhao
|
||||
* @CreateDate : 2019-02-24 16:21
|
||||
* @Modify:
|
||||
**/
|
||||
public class TestInfo extends BaseBean {
|
||||
|
||||
/**
|
||||
* 内存信息
|
||||
*/
|
||||
private double ram;
|
||||
|
||||
/**
|
||||
* cpu信息
|
||||
*/
|
||||
private double cpu;
|
||||
|
||||
/**
|
||||
* 线程id
|
||||
*/
|
||||
private String threadId;
|
||||
|
||||
/**
|
||||
* 方法名
|
||||
*/
|
||||
private String method;
|
||||
}
|
Loading…
Reference in New Issue