Skip to content

Commit

Permalink
#114 Add workflow execution association request
Browse files Browse the repository at this point in the history
  • Loading branch information
tangjiawei committed Oct 11, 2024
1 parent 7f48556 commit 1458b03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taskman-server/dao/request_dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ type RequestDao struct {
}

func (d *RequestDao) QueryRequestByProcInstanceId(procInstanceId string) (result []*models.RequestTable, err error) {
err = d.DB.SQL("select id,name,request_template from request where proc_instance_id = ?", procInstanceId).Find(&result)
err = d.DB.SQL("select id,name,request_template,status,created_by,created_time,updated_by,updated_time,type from request where proc_instance_id = ?", procInstanceId).Find(&result)
return
}

0 comments on commit 1458b03

Please sign in to comment.