线索报名会销跳转地址

This commit is contained in:
feng.li
2023-12-28 13:34:03 +08:00
parent f8d4c2b355
commit 12810baa00
4 changed files with 55 additions and 28 deletions

View File

@@ -18,7 +18,7 @@ public enum FeiShuNoticeMsgEnum {
FOLLOW_TASK("线索跟进任务", "{0}", "img_v2_1960b7ef-8c4e-4c3d-8b67-3d918a85578g", "1567d83b966f2d312fd7fcd2e72dbce9"),
INTERVIEW_APPOINTMENT("面试预约申请", "您有一个【面试预约申请】待处理,预约人 {0} 手机号 {1} ,预约面试时间 {2} ","img_v2_107bb06b-2a7a-43e1-a6ae-e5d2f2dae17g", "1567d83b966f2d312fd7fcd2e72dbce9"),
EXHIBITION_COLLABORATOR("会销协作通知", "{0} 已将您添加为【{1}】的会销协作人,日期为 {2},地点为“{3}” ","img_v3_026c_d561bb71-f085-40ca-9c36-5fe134cacd2g", "1567d83b966f2d312fd7fcd2e72dbce9", "/joint-sales/manage-detail", "/mobile/joint-sales/manage-detail"),
PARTNER_SIGNUP_EXHIBITION("线索已报名会销", "您跟进的线索客户{0} {1} 已报名于 {2} 举办的【{3}】 ,地点为“{4}”","img_v3_026c_5bcf178d-19e6-4445-9677-f748a3f916fg", "1567d83b966f2d312fd7fcd2e72dbce9"),
PARTNER_SIGNUP_EXHIBITION("线索已报名会销", "您跟进的线索客户{0} {1} 已报名于 {2} 举办的【{3}】 ,地点为“{4}”","img_v3_026c_5bcf178d-19e6-4445-9677-f748a3f916fg", "1567d83b966f2d312fd7fcd2e72dbce9", "/clue/details"),
;
private String title;
@@ -29,6 +29,15 @@ public enum FeiShuNoticeMsgEnum {
private String PCPath;
private String mobilePath;
FeiShuNoticeMsgEnum(String title, String content, String imageMediaId, String templateCode, String pcPath) {
this.title = title;
this.content = content;
this.imageMediaId = imageMediaId;
this.templateCode = templateCode;
this.PCPath = pcPath;
this.mobilePath = "/mobile";
}
FeiShuNoticeMsgEnum(String title, String content, String imageMediaId, String templateCode) {
this.title = title;
this.content = content;
@@ -38,12 +47,12 @@ public enum FeiShuNoticeMsgEnum {
this.mobilePath = "/mobile";
}
FeiShuNoticeMsgEnum(String title, String content, String imageMediaId, String templateCode, String PCPath, String mobilePath) {
FeiShuNoticeMsgEnum(String title, String content, String imageMediaId, String templateCode, String pcPath, String mobilePath) {
this.title = title;
this.content = content;
this.imageMediaId = imageMediaId;
this.templateCode = templateCode;
this.PCPath = PCPath;
this.PCPath = pcPath;
this.mobilePath = mobilePath;
}