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

com.healthy.common.log.operation.enums.LogStatusEnum Maven / Gradle / Ivy

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

import lombok.AllArgsConstructor;
import lombok.Getter;

/**
 * 日志操作状态
 * @author xm.z
 */
@Getter
@AllArgsConstructor
public enum LogStatusEnum {

	/**
	 * 成功
	 */
	SUCCESS("0"),

	/**
	 * 失败
	 */
	FAIL("1");

	private final String code;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy