package com.bcxin.backend.domain.enums;

public interface EnumValue {
    int getValue();

    String getDesc();
}
