jinlin
2025-03-18 d30e385951ce03335a5023f0775fd144da3c0b88
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.example.server.progressTrack.dao;
 
 
import com.example.server.dao.BaseDao;
import com.example.server.progressTrack.Dto.StatistDismantDto;
import com.example.server.progressTrack.model.DjJdgzDismantTrack;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
 
/**
 * dj_jdgz_handover
 *
 * @author zt generator 
 * @since 1.0.0 2024-12-17
 */
@Mapper
public interface DjJdgzDismantTrackDao extends BaseDao<DjJdgzDismantTrack> {
 
 
    List<DjJdgzDismantTrack> getList(Long level3Id, Long cabinId);
 
    void deleteByName(String name);
 
    List<DjJdgzDismantTrack> getdata(Long deptId, Long teamGroupId, Long level1NetworkId, Long level3NetworkId, Integer status);
 
    List<StatistDismantDto> getStatist(Long level1Id);
 
    Boolean getStatus(Long level3NetworkId);
 
    List<StatistDismantDto> getStatist2(Long level1Id, Long id);
}