AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
/** * Method: listTaskByFilter * Description: 根据条件获取任务列表,whereCondition是流程表和任务表连接后,后面的查询条件,可根据流程、任务发起时间、任务、流程状态等条件查询 * select XXX from wf_workitem t1 left join wf_flow t2 on t1.l_flowid = t2.l_flowid where whereCondition; * @author: xinl.wang(王新亮) * @param page 分页数据 * @param whereCondition 查询条件 * @return * @throws Exception */ public ReturnResult listTaskByFilter(Page<WorkItem> page,String whereCondition) throws Exception;