You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
369 B

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";
}