19 lines
449 B
Java
19 lines
449 B
Java
package com.greenorange.promotion.mapper;
|
|
|
|
import com.greenorange.promotion.model.entity.UserMainInfo;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
/**
|
|
* @author 35880
|
|
* @description 针对表【user_main_info(用户主要信息表)】的数据库操作Mapper
|
|
* @createDate 2025-05-07 00:53:58
|
|
* @Entity com.greenorange.promotion.model.entity.UserMainInfo
|
|
*/
|
|
public interface UserMainInfoMapper extends BaseMapper<UserMainInfo> {
|
|
|
|
}
|
|
|
|
|
|
|
|
|