123456789101112131415161718 |
- 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<WzStrategyEntity> {
-
- void update(WzStrategyEntity object);
- WzStrategyEntity getObject(Integer id);
- void delById(Integer id);
- WzStrategyEntity getObjectByType();
- }
|