WzStrategyDao.java 421 B

123456789101112131415161718
  1. package com.example.dao;
  2. import com.example.config.mybatis.ex.method.ExBaseMapper;
  3. import com.example.entity.WzStrategyEntity;
  4. import org.apache.ibatis.annotations.Mapper;
  5. @Mapper
  6. public interface WzStrategyDao extends ExBaseMapper<WzStrategyEntity> {
  7. void update(WzStrategyEntity object);
  8. WzStrategyEntity getObject(Integer id);
  9. void delById(Integer id);
  10. WzStrategyEntity getObjectByType();
  11. }