客户档案的体征、合同展示
This commit is contained in:
@ -59,4 +59,9 @@ public interface ISysCustomerHealthyService
|
||||
* @param phone
|
||||
*/
|
||||
SysCustomerHealthy selectSysCustomerHealthyByPhone(String phone);
|
||||
|
||||
/**
|
||||
* 根据客户ID查询健康评估表信息
|
||||
*/
|
||||
SysCustomerHealthy selectSysCustomerHealthyByCustomerId(Long customerId);
|
||||
}
|
@ -22,6 +22,11 @@ public interface ISysCustomerPhysicalSignsService {
|
||||
*/
|
||||
public SysCustomerPhysicalSigns selectSysCustomerPhysicalSignsById(Long id);
|
||||
|
||||
/**
|
||||
* 根据客户ID查询体征数据
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
public SysCustomerPhysicalSigns selectSysCustomerPhysicalSignsByCusId(Long id);
|
||||
|
||||
/**
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user