Commit 3fc9f93cebe68443863ab26d33786bc4f34dfe3e

Authored by wendebin
1 parent b9366d4f8f
Exists in master

删除多余的类

Showing 1 changed file with 0 additions and 21 deletions

mainData/src/main/java/com/lymsh/yimiao/main/data/service/MedInoculaterecordService.java View file @ 3fc9f93
1   -package com.lymsh.yimiao.main.data.service;
2   -
3   -import com.lymsh.yimiao.main.data.model.MedInoculateRecord;
4   -import com.lymsh.yimiao.main.data.model.MedInoculateRecordQuery;
5   -
6   -import java.util.List;
7   -
8   -public interface MedInoculateRecordService {
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   -}