package com.example.dao; import com.example.config.mybatis.ex.method.ExBaseMapper; import com.example.entity.WzStrategyEntity; import org.apache.ibatis.annotations.Mapper; @Mapper public interface WzStrategyDao extends ExBaseMapper { void update(WzStrategyEntity object); WzStrategyEntity getObject(Integer id); void delById(Integer id); WzStrategyEntity getObjectByType(); }