客户档案的合同添加、复制健康调查链接
This commit is contained in:
@ -72,4 +72,11 @@ public interface SysCustomerHealthyMapper
|
||||
* 根据客户ID查询健康评估表信息
|
||||
*/
|
||||
SysCustomerHealthy selectSysCustomerHealthyByCustomerId(@Param("customerId")Long customerId);
|
||||
|
||||
/**
|
||||
* 根据客户ID删除客户健康评估信息
|
||||
* @param customerId
|
||||
* @return
|
||||
*/
|
||||
int deleteCustomerHealthyByCustomerId(@Param("customerId")Long customerId);
|
||||
}
|
@ -66,4 +66,11 @@ public interface SysCustomerPhysicalSignsMapper
|
||||
* @return
|
||||
*/
|
||||
SysCustomerPhysicalSigns selectSysCustomerAndSignByPhone(String phone);
|
||||
|
||||
/**
|
||||
* 根据客户ID删除对应体征信息
|
||||
* @param customerId
|
||||
* @return
|
||||
*/
|
||||
int delCustomerSignByCustomerId(@Param("customerId")Long customerId);
|
||||
}
|
@ -2,6 +2,9 @@ package com.stdiet.custom.mapper;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
|
||||
import com.stdiet.custom.domain.SysCommision;
|
||||
import com.stdiet.custom.domain.SysCommissionDayDetail;
|
||||
import com.stdiet.custom.domain.SysOrder;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
@ -72,5 +75,5 @@ public interface SysOrderMapper
|
||||
* 获取订单信息
|
||||
* @return
|
||||
*/
|
||||
List<SysOrder> selectSimpleOrderMessage(@Param("userId") Long userId);
|
||||
List<SysOrder> selectSimpleOrderMessage(SysCommision sysCommision);
|
||||
}
|
Reference in New Issue
Block a user