package com.iailab.common.enums; /** * @author PanZhibao * @Description * @createTime 2023年07月28日 11:28:00 */ public enum HttpMethodEnum { GET("GET"), POST("POST"); private String value; HttpMethodEnum(String value) { this.value = value; } public String value() { return this.value; } }