任务模块

This commit is contained in:
renzhiyuan 2024-11-29 15:29:03 +08:00
parent cdbba6b3c0
commit 33f16fa49b
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ func ListToRep(list []croncmdmodel.CronCmd) (cmdList []backend.CmdListResponse,
dbMap, err := repository.InAndToMap[crondbmodel.CronDb, int](crondbmodel.GetInstance().GetDb(), "db_id", dbIdList)
userMap, err := repository.InAndToMap[cronusermodel.CronUser, int](cronusermodel.GetInstance().GetDb(), "user_id", userIdList)
channelMap, err := repository.InAndToMap[cronreportchannelmodel.CronReportChannel, int](cronreportchannelmodel.GetInstance().GetDb(), "channel_id", channelList)
channelMap, err := repository.InAndToMap[cronreportchannelmodel.CronReportChannel, int](cronreportchannelmodel.GetInstance().GetDb(), "report_channel_id", channelList)
cmdList = make([]backend.CmdListResponse, len(list))
linq.From(list).SelectT(func(in croncmdmodel.CronCmd) (d backend.CmdListResponse) {
d.ResponseFromDb(in)