【feat】 优化Tasl表和Event表创建whoId和whatId字段

This commit is contained in:
Kris 2025-06-13 11:51:27 +08:00
parent 91e03d7c53
commit 2b8c281b1f

View File

@ -923,12 +923,12 @@ public class CommonServiceImpl implements CommonService {
Map<String, Object> LinkedMap = Maps.newHashMap();
LinkedMap.put("type", "varchar(18)");
LinkedMap.put("comment", "whatTextId");
LinkedMap.put("name", "what_text_id");
LinkedMap.put("name", "WhatId_Text__c");
list.add(LinkedMap);
Map<String, Object> LinkedMap1 = Maps.newHashMap();
LinkedMap1.put("type", "varchar(18)");
LinkedMap1.put("comment", "whoTextId");
LinkedMap1.put("name", "who_text_id");
LinkedMap1.put("name", "WhoId_Text__c");
list.add(LinkedMap1);
}