Commit a715e3e3ea6b54019df27ca9a0d247c8d74fb76c
1 parent
7ca052ed12
Exists in
master
删除多余的类
Showing 1 changed file with 0 additions and 31 deletions
mainData/src/main/java/com/lymsh/yimiao/main/data/service/impl/MedInoculateorderServiceImpl.java
View file @
a715e3e
| 1 | -package com.lymsh.yimiao.main.data.service.impl; | |
| 2 | - | |
| 3 | -import com.lymsh.yimiao.main.data.dao.MedInoculateOrderMapper; | |
| 4 | -import com.lymsh.yimiao.main.data.model.MedInoculateOrder; | |
| 5 | -import com.lymsh.yimiao.main.data.model.MedInoculateOrderQuery; | |
| 6 | -import com.lymsh.yimiao.main.data.service.MedInoculateOrderService; | |
| 7 | -import org.springframework.beans.factory.annotation.Autowired; | |
| 8 | -import org.springframework.stereotype.Service; | |
| 9 | - | |
| 10 | -import java.util.List; | |
| 11 | - | |
| 12 | -@Service | |
| 13 | -public class MedInoculateOrderServiceImpl implements MedInoculateOrderService { | |
| 14 | - | |
| 15 | -@Autowired | |
| 16 | -private MedInoculateOrderMapper medInoculateorderMapper; | |
| 17 | - | |
| 18 | -@Override | |
| 19 | -public void addMedInoculateOrder(MedInoculateOrder obj){medInoculateorderMapper.addMedInoculateOrder(obj);} | |
| 20 | -@Override | |
| 21 | -public void updateMedInoculateOrder(MedInoculateOrder obj){medInoculateorderMapper.updateMedInoculateOrder(obj);} | |
| 22 | -@Override | |
| 23 | -public void deleteMedInoculateOrder (Integer id){medInoculateorderMapper.deleteMedInoculateOrder(id);} | |
| 24 | -@Override | |
| 25 | -public MedInoculateOrder getMedInoculateOrder (String id){return medInoculateorderMapper.getMedInoculateOrder(id);} | |
| 26 | -@Override | |
| 27 | -public int queryMedInoculateOrderCount (MedInoculateOrderQuery query){return medInoculateorderMapper.queryMedInoculateOrderCount(query);} | |
| 28 | -@Override | |
| 29 | -public List<MedInoculateOrder> queryMedInoculateOrder (MedInoculateOrderQuery query){if (query.getNeed() != null) {query.mysqlBuild(medInoculateorderMapper.queryMedInoculateOrderCount(query));}return medInoculateorderMapper.queryMedInoculateOrder(query);} | |
| 30 | - | |
| 31 | -} |