12345678910111213141516171819202122 |
- package cn.com.ty.lift.common.Constants;
- /**
- * @author huangy
- * @date 2019-11-29
- * @description api常量
- */
- public class ApiConstants {
- /**
- * 处理结果 1:成功
- */
- public static final String RESULT_SUCCESS = "1";
- /**
- * 处理结果 0:失败
- */
- public static final String RESULT_ERROR = "0";
- /**
- * 没有数据 9:更新0件、没数据
- */
- public static final String RESULT_NO_DATA = "9";
- }
|