From 135a322f44708b1187d37ea4b6859b5d82113e89 Mon Sep 17 00:00:00 2001 From: kongzy <kongzy> Date: 星期三, 14 八月 2024 11:00:30 +0800 Subject: [PATCH] update gitignore --- src/main/java/com/ruoyi/doublePrevention/enums/CJReportEnum.java | 58 +++++++++++++++++++++++++++++----------------------------- 1 files changed, 29 insertions(+), 29 deletions(-) diff --git a/src/main/java/com/ruoyi/doublePrevention/enums/CJReportEnum.java b/src/main/java/com/ruoyi/doublePrevention/enums/CJReportEnum.java index 044952d..cf8dba5 100644 --- a/src/main/java/com/ruoyi/doublePrevention/enums/CJReportEnum.java +++ b/src/main/java/com/ruoyi/doublePrevention/enums/CJReportEnum.java @@ -1,29 +1,29 @@ -package com.ruoyi.doublePrevention.enums; - -import com.fasterxml.jackson.annotation.JsonValue; - -public enum CJReportEnum { - - SUCCESS("100", "上报全部成功"), - SUCESS_AND_FAIL("102", "上报部分成功"), - FAIL("103", "上报全部失败"), - - ; - - String code; - @JsonValue - String value; - - CJReportEnum(String code, String value) { - this.code = code; - this.value = value; - } - - public String getCode() { - return code; - } - - public String getValue() { - return value; - } -} +package com.ruoyi.doublePrevention.enums; + +import com.fasterxml.jackson.annotation.JsonValue; + +public enum CJReportEnum { + + SUCCESS("100", "上报全部成功"), + SUCESS_AND_FAIL("102", "上报部分成功"), + FAIL("103", "上报全部失败"), + + ; + + String code; + @JsonValue + String value; + + CJReportEnum(String code, String value) { + this.code = code; + this.value = value; + } + + public String getCode() { + return code; + } + + public String getValue() { + return value; + } +} -- Gitblit v1.9.2