24 lines
653 B
Java
24 lines
653 B
Java
package com.peanut.modules.common.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.peanut.modules.common.entity.UserVip;
|
|
import com.peanut.modules.common.entity.UserVipLog;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
public interface UserVipLogService extends IService<UserVipLog> {
|
|
|
|
boolean addUserVipLog(UserVipLog userVipLog);
|
|
|
|
boolean addUserVipLog(Map<String, Object> params, UserVip userVip);
|
|
|
|
BigDecimal countDayAmount(UserVipLog userVipLog);
|
|
|
|
List<Map<String,Object>> getUserVipLogInfo(String date);
|
|
|
|
Map<String, Object> getUserVipLogInfoTotal(String date);
|
|
|
|
}
|