package com.rf.fileCrack.utils; /** * @author zzf * @description: * @date 2021/1/18 19:37 */ public interface HttpStatus { String SUCCESS = "200"; String SUCCESS_PUB = "201"; String RUNTIME_EXCEPTION = "2001"; String SERVER_EXCEPTION = "500100"; String PARAMETER_ISNULL = "500101"; String USER_NOT_FOUND = "6001"; }