| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.ltkj.hosp.domain.DictSfxm; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.apache.ibatis.annotations.Select; |
| | | |
| | | import java.util.List; |
| | |
| | | */ |
| | | public List<DictSfxm> selectDictSfxmList(DictSfxm dictSfxm); |
| | | |
| | | List<DictSfxm> selectDictSfxmListLimit(@Param("dictSfxm") DictSfxm dictSfxm, @Param("page") Integer page, @Param("size") Integer size); |
| | | |
| | | Integer selectDictSfxmListCount(@Param("dictSfxm") DictSfxm dictSfxm); |
| | | |
| | | /** |
| | | * 新增收费项目 |
| | | * |