开通VIP记录

This commit is contained in:
wuchunlei
2024-06-24 17:21:04 +08:00
parent 323df31bd9
commit 9349113937
2 changed files with 63 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package com.peanut.modules.common.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.peanut.modules.common.entity.UserVipLog;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface UserVipLogDao extends BaseMapper<UserVipLog> {
}