feat: 添加日志切面

This commit is contained in:
Ray.Hao
2024-06-26 00:13:50 +08:00
parent 169a1073d7
commit a0530dc380
11 changed files with 251 additions and 35 deletions

View File

@@ -10,17 +10,16 @@ import lombok.Getter;
* @author haoxr
* @since 2022/10/14
*/
@Getter
@Schema(enumAsRef = true)
public enum GenderEnum implements IBaseEnum<Integer> {
MALE(1, ""),
FEMALE (2, "");
@Getter
private Integer value;
private final Integer value;
@Getter
private String label;
private final String label;
GenderEnum(Integer value, String label) {
this.value = value;