MallConstants.java
386 Bytes
package com.diligrp.cashier.mall;
import com.diligrp.cashier.shared.Constants;
/**
* 商城常量
*/
public interface MallConstants {
String RESULT_SUCCESS = "success";
String RESULT_FAILURE = "fail";
Integer RT_MALL_SOURCE = 1;
String MALL_TOKEN = Constants.PRODUCT_NAME + "mall_token:";
String MALL_USER_INFO = Constants.PRODUCT_NAME + "mall_user_info:";
}