| | |
| | | import java.util.Map; |
| | | |
| | | import com.moral.entity.alarm.AlarmConfig; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | public interface AlarmConfigMapper { |
| | | int deleteByPrimaryKey(Integer id); |
| | |
| | | int updateByPrimaryKeySelective(AlarmConfig record); |
| | | |
| | | int updateByPrimaryKey(AlarmConfig record); |
| | | |
| | | AlarmConfig selectByMonitorPointId(Integer mpId); |
| | | |
| | | AlarmConfig selectByDeviceMac(String mac); |
| | | |
| | | public String getValueByOrganizationId(@Param("organizationId") int organizationId); |
| | | |
| | | int containOrgId(@Param("orgId")Integer orgId); |
| | | } |