| | |
| | | import com.baomidou.mybatisplus.core.toolkit.Constants; |
| | | import com.doumee.dao.business.model.Projects; |
| | | import com.doumee.dao.web.response.ProjectsResponse; |
| | | import com.doumee.dao.web.response.UserResponse; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | |
| | |
| | | public interface ProjectsMapper extends BaseMapper<Projects> { |
| | | |
| | | |
| | | @Select(" SELECT * FROM Projects " + |
| | | @Select(" SELECT * FROM meeting_projects " + |
| | | " ${ew.customSqlSegment} ") |
| | | List<ProjectsResponse> getProjectsList(@Param(Constants.WRAPPER) Wrapper wrapper); |
| | | |