| package doumeemes.dao.ext; | 
|   | 
| import doumeemes.dao.business.model.Plans; | 
| import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
| import doumeemes.dao.ext.dto.QueryWOutboundExtDTO; | 
| import doumeemes.dao.ext.vo.PlansExtListVO; | 
| import doumeemes.dao.ext.dto.QueryPlansExtDTO; | 
|   | 
| import java.util.List; | 
|   | 
| public interface PlansExtMapper extends BaseMapper<Plans> { | 
|   | 
|     /** | 
|      * 管理页面查询 | 
|      * @author 江蹄蹄 | 
|      * @date 2022/04/20 11:01 | 
|      */ | 
|     List<PlansExtListVO> selectList(QueryPlansExtDTO dto); | 
|     int selectCount(QueryPlansExtDTO dto); | 
|   | 
|     void insertBatch(List<Plans> plansList); | 
|   | 
|     PlansExtListVO selectByModel(QueryPlansExtDTO mpp); | 
|   | 
|     Integer selectCountToday(QueryPlansExtDTO w); | 
|   | 
| } |