master
TangZhaoZhen 2023-10-18 09:32:36 +08:00
parent f41a229fbb
commit b8c2caec83
1 changed files with 6 additions and 3 deletions

View File

@ -1,7 +1,10 @@
package com.tongcheng.common.core.domain;
package com.four.common.core.domain;
import com.four.common.core.constant.Constants;
import java.io.Serializable;
import com.tongcheng.common.core.constant.Constants;
/**
*
@ -16,7 +19,7 @@ public class Result<T> implements Serializable
public static final int SUCCESS = Constants.SUCCESS;
/** 失败 */
public static final int ERROR = Constants.ERROR;
public static final int ERROR = Constants.FAIL;
private int code;