package cc.mrbird.febs.mall.service;
|
|
import cc.mrbird.febs.mall.entity.AppVersion;
|
import cc.mrbird.febs.mall.entity.DataDictionaryCustom;
|
import cc.mrbird.febs.mall.vo.CashOutSettingVo;
|
|
import java.util.List;
|
|
/**
|
* @author wzy
|
* @date 2021-09-16
|
**/
|
public interface ICommonService {
|
boolean verifyCode(String account, String code);
|
|
List<DataDictionaryCustom> findDataDicByType(String type);
|
|
List<AppVersion> findAppVersion();
|
|
void addDataDic(String type, String key, Object value, String description);
|
|
void updateDataDic(String type, String code, String value);
|
|
void addAchieveAndUpdateLevel(Long orderId,Long memberId);
|
|
}
|