package com.zt.life.modules.mainPart.basicInfo.dao; 
 | 
  
 | 
import com.zt.common.dao.BaseDao; 
 | 
import com.zt.life.modules.mainPart.basicInfo.model.ParamData; 
 | 
import org.apache.ibatis.annotations.Mapper; 
 | 
  
 | 
  
 | 
import java.util.List; 
 | 
import java.util.Map; 
 | 
  
 | 
  
 | 
/** 
 | 
 * param_data 
 | 
 * 
 | 
 * @author zt generator  
 | 
 * @since 1.0.0 2024-03-04 
 | 
 */ 
 | 
@Mapper 
 | 
public interface ParamDataDao extends BaseDao<ParamData> { 
 | 
  
 | 
    List<ParamData> getList(Map<String, Object> params); 
 | 
    ParamData getParamData(Long productId); 
 | 
  
 | 
    List<ParamData> getByShipId(Long shipId); 
 | 
    List<ParamData> getDeviceParams(Long shipId); 
 | 
  
 | 
    void deleteByShipId(Long shipId); 
 | 
} 
 |