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 { List getList(Map params); ParamData getParamData(Long productId, String pageCode); List getByShipId(Long shipId); List getDeviceParams(Long shipId); void deleteByShipId(Long shipId); void recalculate(Long shipId); }