| | |
| | | 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; |
| | | |
| | |
| | | @Mapper |
| | | public interface DjJdgzNetworkLevel3Dao extends BaseDao<DjJdgzNetworkLevel3> { |
| | | |
| | | List<DjJdgzNetworkLevel3> getList(Long shipId, Long deptId, Long teamId, Long cabinId, String type,String name); |
| | | List<DjJdgzNetworkLevel3> getList(Long shipId, Long deptId, Long teamId, Long cabinId, String type,Integer isealCabin,Integer isLt,String name); |
| | | List<NetworkNodeStatusDto> getNodeStatusData(Long id); |
| | | |
| | | void deleteLevel3(Long id); |
| | |
| | | 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,Integer isCabin,Integer islt, String name); |
| | | |
| | | List<StatistProductDto> getStatist(Long level1Id,String type); |
| | | |
| | | String getRemark(Long networkId, String type); |
| | | } |