旗开得胜

This commit is contained in:
2025-04-24 11:49:59 +08:00
parent 2577c614d5
commit 1bad62e831
5 changed files with 162 additions and 0 deletions

View File

@ -0,0 +1,18 @@
package com.greenorange.promotion.mapper;
import com.greenorange.promotion.model.entity.UserInfo;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* @author 35880
* @description 针对表【user_info(用户基本信息表)】的数据库操作Mapper
* @createDate 2025-04-24 11:47:37
* @Entity com.greenorange.promotion.model.entity.UserInfo
*/
public interface UserInfoMapper extends BaseMapper<UserInfo> {
}