package com.example.demokafka.common.constant; /** * @Description * @Author ZhouWenTao * @Date 2023/9/1 15:19 */ public interface CommonConstant { /*请求成功*/ Integer SC_OK_200=200; Integer SC_INTERNAL_SERVER_ERROR_500=500; /**访问权限认证未通过 510*/ Integer SC_JEECG_NO_AUTHZ=510; String X_ACCESS_TOKEN="x-access-token"; }