用户模块
This commit is contained in:
@ -0,0 +1,18 @@
|
||||
package com.greenorange.promotion.mapper;
|
||||
|
||||
import com.greenorange.promotion.model.entity.ProjectDetail;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @author 35880
|
||||
* @description 针对表【project_detail(项目明细表)】的数据库操作Mapper
|
||||
* @createDate 2025-05-07 03:47:58
|
||||
* @Entity com.greenorange.promotion.model.entity.ProjectDetail
|
||||
*/
|
||||
public interface ProjectDetailMapper extends BaseMapper<ProjectDetail> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,18 @@
|
||||
package com.greenorange.promotion.mapper;
|
||||
|
||||
import com.greenorange.promotion.model.entity.ProjectNotification;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
|
||||
/**
|
||||
* @author 35880
|
||||
* @description 针对表【project_notification(项目通知表)】的数据库操作Mapper
|
||||
* @createDate 2025-05-07 03:31:03
|
||||
* @Entity com.greenorange.promotion.model.entity.ProjectNotification
|
||||
*/
|
||||
public interface ProjectNotificationMapper extends BaseMapper<ProjectNotification> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,18 @@
|
||||
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> {
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user