123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- package com.sooka.sponest.data.generalbusiness.mapper;
- import com.sooka.sponest.data.generalbusiness.domain.CenterdataTKeyProjects;
- import java.util.List;
- /**
- * 重点工程Mapper接口
- *
- * @author ruoyi
- * @date 2023-04-23
- */
- public interface CenterdataTKeyProjectsMapper {
- /**
- * 查询重点工程列表
- *
- * @param centerdataTKeyProjects 重点工程
- * @return 重点工程集合
- */
- List<CenterdataTKeyProjects> selectCenterdataTKeyProjectsList(CenterdataTKeyProjects centerdataTKeyProjects);
- /**
- * 查询重点工程
- *
- * @param id 重点工程主键
- * @return 重点工程
- */
- CenterdataTKeyProjects selectCenterdataTKeyProjectsById(String id);
- /**
- * 新增重点工程
- *
- * @param centerdataTKeyProjects 重点工程
- * @return 结果
- */
- int insertCenterdataTKeyProjects(CenterdataTKeyProjects centerdataTKeyProjects);
- /**
- * 修改重点工程
- *
- * @param centerdataTKeyProjects 重点工程
- * @return 结果
- */
- int updateCenterdataTKeyProjects(CenterdataTKeyProjects centerdataTKeyProjects);
- /**
- * 批量删除重点工程
- *
- * @param ids 需要删除的数据主键集合
- * @return 结果
- */
- int deleteCenterdataTKeyProjectsByIds(String[] ids);
- /*
- * 按重点工程id查询最新一条进度图
- *
- * @author 韩福成
- * @date 2024/1/18 15:23
- */
- String getSelectScheduleById(String id);
- /*
- * 查询项目id集合
- *
- * @author 韩福成
- * @date 2024/4/2 9:56
- */
- List<String> getProjectId();
- /*
- * 按项目id修改重点工程
- *
- * @author 韩福成
- * @date 2024/4/2 10:06
- */
- int updateByProjectId(CenterdataTKeyProjects centerdataTKeyProjects);
- }
|