用户模块

This commit is contained in:
2025-05-07 04:14:21 +08:00
parent e1b1bfc721
commit 6e0576df5b
42 changed files with 1882 additions and 96 deletions

View File

@ -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> {
}

View File

@ -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> {
}

View File

@ -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> {
}