客户档案的体征、合同展示

This commit is contained in:
xiezhijun
2021-01-30 19:26:56 +08:00
parent 1c58b13bcf
commit 9470aa6b5e
18 changed files with 754 additions and 384 deletions

View File

@ -59,4 +59,9 @@ public interface ISysCustomerHealthyService
* @param phone
*/
SysCustomerHealthy selectSysCustomerHealthyByPhone(String phone);
/**
* 根据客户ID查询健康评估表信息
*/
SysCustomerHealthy selectSysCustomerHealthyByCustomerId(Long customerId);
}

View File

@ -22,6 +22,11 @@ public interface ISysCustomerPhysicalSignsService {
*/
public SysCustomerPhysicalSigns selectSysCustomerPhysicalSignsById(Long id);
/**
* 根据客户ID查询体征数据
* @param id
* @return
*/
public SysCustomerPhysicalSigns selectSysCustomerPhysicalSignsByCusId(Long id);
/**

View File

@ -151,4 +151,11 @@ public class SysCustomerHealthyServiceImpl implements ISysCustomerHealthyService
public SysCustomerHealthy selectSysCustomerHealthyByPhone(String phone){
return sysCustomerHealthyMapper.selectSysCustomerHealthyByPhone(phone);
}
/**
* 根据客户ID查询健康评估表信息
*/
public SysCustomerHealthy selectSysCustomerHealthyByCustomerId(Long customerId){
return sysCustomerHealthyMapper.selectSysCustomerHealthyByCustomerId(customerId);
}
}