ResultStatus.java 307 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 package com.huaheng.api.xinyi.constant; /** * 返回code状态 * * @author Enzo Cotter * @date 2019/12/20 */ public class ResultStatus { /** * 成功 */ public static final String SUCCESS = "0"; /** * token过期 */ public static final String EXPIRED = "401"; }