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.
|
package com.llw.cart.util;
|
|
|
|
|
|
/**
|
|
* 商品回调接口
|
|
* @author llw
|
|
*/
|
|
public interface GoodsCallback {
|
|
|
|
/**
|
|
* 选中店铺
|
|
* @param shopId 店铺id
|
|
* @param state 是否选中
|
|
*/
|
|
void checkedStore(int shopId,boolean state);
|
|
|
|
/**
|
|
* 计算价格
|
|
*/
|
|
void calculationPrice();
|
|
}
|