12345678910 |
- package com.miniframe.model.system.dao;
- import com.miniframe.model.system.DThreshold;
- import com.miniframe.model.system.DThresholdSQLBuilder;
- import com.miniframe.spring.db.MFBaseMapper;
- import com.miniframe.system.MiniserviceBaseDao;
- public interface DThresholdMapper extends MiniserviceBaseDao, MFBaseMapper<DThreshold> {
- long countByExample(DThresholdSQLBuilder example);
- }
|