📖 CRM:code review 跟进记录的实现

This commit is contained in:
YunaiV
2024-01-13 09:56:53 +08:00
parent d80406acbb
commit e79c750b46
17 changed files with 68 additions and 140 deletions

View File

@ -28,6 +28,7 @@
<artifactId>spring-boot-starter-validation</artifactId>
<optional>true</optional>
</dependency>
<!-- TODO @puhui999api 之间不直接引入哈然后logrecord function 在微服务下,这么跑会高不起来,所以每个服务自己写 function -->
<dependency>
<groupId>cn.iocoder.boot</groupId>
<artifactId>yudao-module-system-api</artifactId>

View File

@ -6,6 +6,7 @@ package cn.iocoder.yudao.module.crm.enums.operatelog;
*
* @author HUIHUI
*/
// TODO @puhui999这个枚举还是放在对应的 Function 里好。主要考虑,和 Function 实现可以更近一点哈
public interface CrmParseFunctionNameConstants {
String GET_CONTACT_BY_ID = "getContactById"; // 获取联系人信息
@ -15,4 +16,4 @@ public interface CrmParseFunctionNameConstants {
String GET_CUSTOMER_SOURCE = "getCustomerSource"; // 获取客户来源
String GET_CONTRACT_BY_ID = "getContractById"; // 获取合同信息
}
}