更改分配时间

This commit is contained in:
xiaodong.hu
2023-11-28 21:13:25 +08:00
parent 2aa49454ff
commit 49964a5168
2 changed files with 5 additions and 2 deletions

View File

@@ -49,7 +49,8 @@
workflow_stage,
workflow_status,
line_status,
investment_manager
investment_manager,
allot_time
)
values
<foreach collection="recordList" item="record" separator=",">
@@ -57,7 +58,8 @@
#{record.workflowStage},
#{record.workflowStatus},
#{record.lineStatus},
#{record.investmentManager})
#{record.investmentManager},
#{record.allotTime})
</foreach>
</insert>

View File

@@ -318,6 +318,7 @@ public class HyPartnerLineInfoServiceImpl implements HyPartnerLineInfoService {
hyPartnerLineInfoDO.setWorkflowStage(WorkflowStageEnum.INTENT.getCode());
hyPartnerLineInfoDO.setWorkflowStatus(WorkflowStatusEnum.INTENT_0.getCode());
hyPartnerLineInfoDO.setLineStatus(1);
hyPartnerLineInfoDO.setAllotTime(new Date());
list.add(hyPartnerLineInfoDO);
});
hyPartnerLineInfoDAO.batchInsert(list);