vip明细统计、导出

This commit is contained in:
wuchunlei
2025-09-18 15:25:26 +08:00
parent 07934839d7
commit fc15ffa30d
5 changed files with 160 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ 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> {
@@ -15,4 +16,8 @@ public interface UserVipLogService extends IService<UserVipLog> {
BigDecimal countDayAmount(UserVipLog userVipLog);
List<Map<String,Object>> getUserVipLogInfoList(String date);
Map<String, Object> getUserVipLogInfoTotal(String date);
}