package com.kidgrow.common.exception.code; /** * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020
* * @Description:
* @Project:
* @CreateDate: Created in 2020/2/11 12:27
* @Author: liuke */ public interface BaseExceptionCode { /** * 异常编码 * * @return */ int getCode(); /** * 异常消息 * @return */ String getMsg(); }