ClientCustomerService.java
1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.infoloop.tianting.service;
import com.infoloop.tianting.model.dto.ClientCustomerDbDTO.ClientCustomerDto;
import com.infoloop.tianting.model.dto.ClientCustomerDbDTO.HospitalRecordDto;
import com.infoloop.tianting.model.dto.ClientCustomerDbDTO.TodayOrderDto;
import com.infoloop.tianting.model.dto.ClientLabelDTO.BatchCreateCustomerLabelRefDto;
import com.infoloop.tianting.model.dto.ClientLabelDTO.BatchCreateCustomerLabelRefResponseDto;
import com.infoloop.tianting.model.dto.ClientLabelDTO.BatchDeleteCustomerLabelRefRequestDto;
import com.infoloop.tianting.model.dto.ClientLabelDTO.BatchDeleteCustomerLabelRefResponseDto;
import com.infoloop.tianting.model.dto.ClientLabelDTO.CustomerLabelRefDetailDto;
import java.io.IOException;
import java.util.List;
public interface ClientCustomerService {
ClientCustomerDto getClientCustomerByHISCustomerId(String hisCustomerId);
ClientCustomerDto getClientCustomerByCustomerId(Integer customerId);
ClientCustomerDto getClientCustomerByPhone(String phone);
List<HospitalRecordDto> getClientCustomerHospitalRecordsByCustomerId(
Integer enterpriseId, Integer customerId);
BatchCreateCustomerLabelRefResponseDto batchCreateClientCustomerLabelRefs(
BatchCreateCustomerLabelRefDto batchCreateCustomerLabelRefDto);
List<CustomerLabelRefDetailDto> getCustomerLabelsByCustomerId(
Integer enterpriseId, Integer customerId);
BatchDeleteCustomerLabelRefResponseDto deleteClientCustomerLabelRefsByIds(
BatchDeleteCustomerLabelRefRequestDto deleteRequestDto);
TodayOrderDto getTodayOrderStatistic(String token);
TodayOrderDto getTodayOrderStatisticForHis(String token);
ClientCustomerDto getClientCustomerByHISCustomerNo(String hisCustomerNo);
void synchronizationHisClientCustomer() throws IOException;
}