You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
615 B
33 lines
615 B
package com.cyjd.rights.constant;
|
|
|
|
/**
|
|
* 云媒敞亮类
|
|
*/
|
|
public class YunmeiConstant {
|
|
|
|
|
|
/**
|
|
* 商品列表
|
|
*/
|
|
public static final String PRODUCT_LIST = "/api/goods/list";
|
|
|
|
/**
|
|
* 商品详情
|
|
*/
|
|
public static final String PRODUCT_DETAILS = "/api/goods/get";
|
|
|
|
/**
|
|
* 直充/卡密下单
|
|
*/
|
|
public static final String CREATE_ORDER = "/api/order/create";
|
|
|
|
/**
|
|
* 订单查询
|
|
*/
|
|
public static final String ORDER_DETAILS = "/api/order/get";
|
|
|
|
/**
|
|
* 余额查询
|
|
*/
|
|
public static final String AMOUNT = "/api/account/balance";
|
|
}
|
|
|