jinlin
2025-04-05 92705ac08a97ddc4904795f024723aab69e1abd8
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
34
35
36
37
38
39
40
41
package com.example.server.progressTrack.dao;
 
import com.example.client.dto.JComboBoxItem;
import com.example.server.dao.BaseDao;
import com.example.server.progressTrack.Dto.NetworkNodeStatusDto;
import com.example.server.progressTrack.Dto.StatistProductDto;
import com.example.server.progressTrack.Dto.TableNodeDto;
import com.example.server.progressTrack.model.DjJdgzNetworkLevel3;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
import java.util.Map;
 
 
/**
 * dj_jdgz_network_level3
 *
 * @author zt generator 
 * @since 1.0.0 2024-12-17
 */
@Mapper
public interface DjJdgzNetworkLevel3Dao extends BaseDao<DjJdgzNetworkLevel3> {
 
    List<DjJdgzNetworkLevel3> getList(Long shipId, Long deptId, Long teamId, Long cabinId, String type,Integer isealCabin,String name);
    List<NetworkNodeStatusDto> getNodeStatusData(Long id);
 
    void deleteLevel3(Long id);
    void deleteLevel3List(Long id);
 
    List<DjJdgzNetworkLevel3> getByNodeId(Long id);
 
    JComboBoxItem[] getListByLevel1(Long level1NetworkId);
 
    void deleteByTeamGroup(Long teamGroupId, String name);
 
    JComboBoxItem[] getListByExport(Long projectId, Long deptId, Long teamId);
 
    List<TableNodeDto> getNodeList(Long shipId, Long deptId, Long teamId, Long cabinId, String type, String name);
 
    List<StatistProductDto> getStatist(Long level1Id);
}