| | |
| | | package com.ltkj.hosp.service.impl; |
| | | |
| | | import java.sql.ResultSet; |
| | | import java.util.Collections; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ltkj.common.utils.DateUtils; |
| | |
| | | public ResultSet getJsonParseCustomerList(String deptId, Integer page, Integer pageSize, String cusName, String tjNumber) { |
| | | return tjCustomerMapper.getJsonParseCustomerList(deptId,page,pageSize,cusName,tjNumber); |
| | | } |
| | | |
| | | @Override |
| | | public String getCompNameByCusId(String cusId) { |
| | | return tjCustomerMapper.getCompNameByCusId(cusId); |
| | | } |
| | | |
| | | @Override |
| | | public void updateCardId(Long cusId, String cardId) { |
| | | tjCustomerMapper.updateCardId(cusId,cardId); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map<String, Object>> vcustomerlist(String name, String sjh, String sfzh) { |
| | | return tjCustomerMapper.vcustomerlist(name,sjh,sfzh); |
| | | } |
| | | |
| | | @Override |
| | | public List<TjCustomer> getcusList(TjCustomer tjCustomer) { |
| | | return tjCustomerMapper.getcusList(tjCustomer); |
| | | } |
| | | |
| | | @Override |
| | | public String getSexByTjh(String tjNumber) { |
| | | return tjCustomerMapper.getSexByTjh(tjNumber); |
| | | } |
| | | } |