| | |
| | | package com.example.server.progressTrack.dao; |
| | | |
| | | import com.example.server.dao.BaseDao; |
| | | import com.example.server.progressTrack.Dto.ReportRecordDto; |
| | | import com.example.server.progressTrack.Dto.StatistReportsDto; |
| | | import com.example.server.progressTrack.model.DjJdgzTrackRecord; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | |
| | | @Mapper |
| | | public interface DjJdgzTrackRecordDao extends BaseDao<DjJdgzTrackRecord> { |
| | | |
| | | List<DjJdgzTrackRecord> getList(Long level1NetworkId,Integer status,Long userId); |
| | | List<DjJdgzTrackRecord> getList(Long level1NetworkId, Long deptId, Long teamId, Long cabinId, String type, Integer status,Integer isealCabin, String name); |
| | | |
| | | List<DjJdgzTrackRecord> getHistory(Long level3NodeId); |
| | | |
| | | List<StatistReportsDto> getReport(Long level1NetworkId); |
| | | |
| | | List<DjJdgzTrackRecord> prompt(Long level1NetworkId, int weekNo, Long userId); |
| | | List<DjJdgzTrackRecord> prompt(Long level1NetworkId, int weekNo, Long userId,Long deptId,Long teamId,String name); |
| | | |
| | | List<DjJdgzTrackRecord> getdata(String teamgroupId, Long level1NetworkId, Long level3NetworkId, Long level3NodeId, Integer status, Date beginDate, Date endDate, Integer istq); |
| | | |
| | | List<DjJdgzTrackRecord> getSummaryData(String teamgroupId, Long level1NetworkId, Long level3NetworkId, Long level3NodeId, Integer status, Date beginDate, Date endDate, Integer istq); |
| | | |
| | | Integer getTrackNum(Long level3NodeId); |
| | | |
| | | List<DjJdgzTrackRecord> getListByImport(Long level1Id, Long level2Id, Long level2NodeId, String selectedIds); |
| | | |
| | | void retract(Long id); |
| | | |
| | | List<ReportRecordDto> getReportRecord(Long level1NetworkId, int column, Long teamgroupId); |
| | | |
| | | Long getIsExit(Long level3NetworkId, String processName); |
| | | } |