Commit c498f59723744e778be84b07ad13f50597a6ea4d

Authored by wendebin
1 parent 8b6528d671
Exists in master

删除多余的类

Showing 1 changed file with 0 additions and 21 deletions

mainData/src/main/java/com/lymsh/yimiao/main/data/dao/MedInoculaterecordMapper.java View file @ c498f59
1   -package com.lymsh.yimiao.main.data.dao;
2   -
3   -import com.lymsh.yimiao.main.data.model.MedInoculateRecordQuery;
4   -import com.lymsh.yimiao.main.data.model.MedInoculateRecord;
5   -
6   -import java.util.List;
7   -
8   -public interface MedInoculateRecordMapper {
9   - public void addMedInoculateRecord(MedInoculateRecord obj);
10   -
11   - public void updateMedInoculateRecord(MedInoculateRecord obj);
12   -
13   - public void deleteMedInoculateRecord(Integer id);
14   -
15   - public MedInoculateRecord getMedInoculateRecord(String id);
16   -
17   - public int queryMedInoculateRecordCount(MedInoculateRecordQuery query);
18   -
19   - public List<MedInoculateRecord> queryMedInoculateRecord(MedInoculateRecordQuery query);
20   -
21   -}