|
@@ -73,6 +73,8 @@ func (noticePersonalService *NoticePersonalService) AgreeJoinCreationProject(agr |
|
@@ -73,6 +73,8 @@ func (noticePersonalService *NoticePersonalService) AgreeJoinCreationProject(agr |
|
73
|
}
|
73
|
}
|
|
74
|
extendData := map[string]interface{}{
|
74
|
extendData := map[string]interface{}{
|
|
75
|
"creationProjectId": agreeJoinCreationProjectCommand.CreationProjectId,
|
75
|
"creationProjectId": agreeJoinCreationProjectCommand.CreationProjectId,
|
|
|
|
76
|
+ "creationProjectName": agreeJoinCreationProjectCommand.CreationProjectName,
|
|
|
|
77
|
+ "creationProjectNumber": agreeJoinCreationProjectCommand.CreationProjectNumber,
|
|
76
|
}
|
78
|
}
|
|
77
|
extendStr, _ := json.Marshal(extendData)
|
79
|
extendStr, _ := json.Marshal(extendData)
|
|
78
|
noticePersonal := domain.NoticePersonal{
|
80
|
noticePersonal := domain.NoticePersonal{
|
|
@@ -226,9 +228,15 @@ func (noticePersonalService *NoticePersonalService) InformExpectedDividends(info |
|
@@ -226,9 +228,15 @@ func (noticePersonalService *NoticePersonalService) InformExpectedDividends(info |
|
226
|
}
|
228
|
}
|
|
227
|
extendData := map[string]interface{}{
|
229
|
extendData := map[string]interface{}{
|
|
228
|
"creationProjectId": informExpectedDividendsCommand.CreationProjectId,
|
230
|
"creationProjectId": informExpectedDividendsCommand.CreationProjectId,
|
|
|
|
231
|
+ "creationProjectNumber": informExpectedDividendsCommand.CreationProjectNumber,
|
|
|
|
232
|
+ "creationProjectName": informExpectedDividendsCommand.CreationProjectName,
|
|
229
|
"creationContractId": informExpectedDividendsCommand.CreationContractId,
|
233
|
"creationContractId": informExpectedDividendsCommand.CreationContractId,
|
|
|
|
234
|
+ "creationContractName": informExpectedDividendsCommand.CreationContractName,
|
|
|
|
235
|
+ "productName": informExpectedDividendsCommand.ProductName,
|
|
230
|
"dividendsEstimateId": informExpectedDividendsCommand.DividendsEstimateId,
|
236
|
"dividendsEstimateId": informExpectedDividendsCommand.DividendsEstimateId,
|
|
|
|
237
|
+ "dividendsAmount": informExpectedDividendsCommand.DividendsAmount,
|
|
231
|
}
|
238
|
}
|
|
|
|
239
|
+
|
|
232
|
extendStr, _ := json.Marshal(extendData)
|
240
|
extendStr, _ := json.Marshal(extendData)
|
|
233
|
noticePersonal := domain.NoticePersonal{
|
241
|
noticePersonal := domain.NoticePersonal{
|
|
234
|
CreatedAt: time.Now(),
|
242
|
CreatedAt: time.Now(),
|
|
@@ -320,7 +328,14 @@ func (noticePersonalService *NoticePersonalService) InformJoinCreationContract(i |
|
@@ -320,7 +328,14 @@ func (noticePersonalService *NoticePersonalService) InformJoinCreationContract(i |
|
320
|
if err != nil {
|
328
|
if err != nil {
|
|
321
|
return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "消息体生成失败"+err.Error())
|
329
|
return nil, application.ThrowError(application.INTERNAL_SERVER_ERROR, "消息体生成失败"+err.Error())
|
|
322
|
}
|
330
|
}
|
|
323
|
- extendData := map[string]interface{}{}
|
331
|
+ extendData := map[string]interface{}{
|
|
|
|
332
|
+ "creationProjectId": informJoinCreationContractCommand.CreationProjectId,
|
|
|
|
333
|
+ "creationProjectName": informJoinCreationContractCommand.CreationProjectName,
|
|
|
|
334
|
+ "creationProjectNumber": informJoinCreationContractCommand.CreationContractNumber,
|
|
|
|
335
|
+ "creationContractId": informJoinCreationContractCommand.CreationContractId,
|
|
|
|
336
|
+ "creationContractName": informJoinCreationContractCommand.CreationContractName,
|
|
|
|
337
|
+ "creationContractNumber": informJoinCreationContractCommand.CreationContractNumber,
|
|
|
|
338
|
+ }
|
|
324
|
extendStr, _ := json.Marshal(extendData)
|
339
|
extendStr, _ := json.Marshal(extendData)
|
|
325
|
noticePersonal := domain.NoticePersonal{
|
340
|
noticePersonal := domain.NoticePersonal{
|
|
326
|
CreatedAt: time.Now(),
|
341
|
CreatedAt: time.Now(),
|
|
@@ -411,6 +426,8 @@ func (noticePersonalService *NoticePersonalService) RefuseJoinCreationProject(re |
|
@@ -411,6 +426,8 @@ func (noticePersonalService *NoticePersonalService) RefuseJoinCreationProject(re |
|
411
|
}
|
426
|
}
|
|
412
|
extendData := map[string]interface{}{
|
427
|
extendData := map[string]interface{}{
|
|
413
|
"creationProjectId": refuseJoinCreationProjectCommand.CreationProjectId,
|
428
|
"creationProjectId": refuseJoinCreationProjectCommand.CreationProjectId,
|
|
|
|
429
|
+ "creationProjectName": refuseJoinCreationProjectCommand.CreationProjectName,
|
|
|
|
430
|
+ "creationProjectNumber": refuseJoinCreationProjectCommand.CreationProjectNumber,
|
|
414
|
}
|
431
|
}
|
|
415
|
extendStr, _ := json.Marshal(extendData)
|
432
|
extendStr, _ := json.Marshal(extendData)
|
|
416
|
noticePersonal := domain.NoticePersonal{
|
433
|
noticePersonal := domain.NoticePersonal{
|
|
@@ -505,6 +522,8 @@ func (noticePersonalService *NoticePersonalService) CreditAccountEstimate(credit |
|
@@ -505,6 +522,8 @@ func (noticePersonalService *NoticePersonalService) CreditAccountEstimate(credit |
|
505
|
extendData := map[string]interface{}{
|
522
|
extendData := map[string]interface{}{
|
|
506
|
"creditAccountId": creditAccountEstimateCommand.CreditAccountId,
|
523
|
"creditAccountId": creditAccountEstimateCommand.CreditAccountId,
|
|
507
|
"dividendsEstimateId": creditAccountEstimateCommand.DividendsEstimateId,
|
524
|
"dividendsEstimateId": creditAccountEstimateCommand.DividendsEstimateId,
|
|
|
|
525
|
+ "creditAccountOrderNum": creditAccountEstimateCommand.CreditAccountOrderNum,
|
|
|
|
526
|
+ "dividendsEstimateOrderNumber": creditAccountEstimateCommand.DividendsEstimateOrderNumber,
|
|
508
|
}
|
527
|
}
|
|
509
|
extendStr, _ := json.Marshal(extendData)
|
528
|
extendStr, _ := json.Marshal(extendData)
|
|
510
|
noticePersonal := domain.NoticePersonal{
|
529
|
noticePersonal := domain.NoticePersonal{
|
|
@@ -598,7 +617,11 @@ func (noticePersonalService *NoticePersonalService) CreditAccountPayment(creditA |
|
@@ -598,7 +617,11 @@ func (noticePersonalService *NoticePersonalService) CreditAccountPayment(creditA |
|
598
|
}
|
617
|
}
|
|
599
|
extendData := map[string]interface{}{
|
618
|
extendData := map[string]interface{}{
|
|
600
|
"creditAccountId": creditAccountPaymentCommand.CreditAccountId,
|
619
|
"creditAccountId": creditAccountPaymentCommand.CreditAccountId,
|
|
|
|
620
|
+ "creditAccountOrderNum": creditAccountPaymentCommand.CreditAccountOrderNum,
|
|
|
|
621
|
+ "settlementAmount": creditAccountPaymentCommand.SettlementAmount,
|
|
|
|
622
|
+ "actuallyPaidAmount": creditAccountPaymentCommand.ActuallyPaidAmount,
|
|
601
|
}
|
623
|
}
|
|
|
|
624
|
+
|
|
602
|
extendStr, _ := json.Marshal(extendData)
|
625
|
extendStr, _ := json.Marshal(extendData)
|
|
603
|
noticePersonal := domain.NoticePersonal{
|
626
|
noticePersonal := domain.NoticePersonal{
|
|
604
|
CreatedAt: time.Now(),
|
627
|
CreatedAt: time.Now(),
|