All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.healthy.common.log.operation.properties.OperationLogProperties Maven / Gradle / Ivy

There is a newer version: 2.0.0-M1
Show newest version
package com.healthy.common.log.operation.properties;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;

/**
 * 操作日志配置
 *
 * @author xm.z
 */
@Data
@ConfigurationProperties(prefix = OperationLogProperties.PREFIX)
public class OperationLogProperties {

	public static final String PREFIX = "log.operation";

	/**
	 * 开启操作日志的记录
	 */
	private boolean enabled = true;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy