com.biz.operation.log.store.OperationLogStoreKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biz-all Show documentation
Show all versions of biz-all Show documentation
BizX 是一个灵活而高效的业务开发框架, 其中也有很多为业务开发所需要的工具类的提供。
The newest version!
package com.biz.operation.log.store;
import lombok.*;
import java.io.Serializable;
/**
* 操作日志存储 key。
*
* @author francis
* @create 2024-09-19
* @since 1.0.1
**/
@Setter
@Getter
@ToString
@Builder
@NoArgsConstructor
@AllArgsConstructor
@EqualsAndHashCode
public class OperationLogStoreKey implements Serializable {
/**
* 当前操作日志产生的类名。
*/
private String className;
/**
* 当前操作日志产生的方法名。
*/
private String methodName;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy