main
黄海 2 years ago
parent d6a60b3e7a
commit c766b89792

@ -36,7 +36,7 @@
#end
-- 任务列表
#sql("viewJobList")
select * from t_collect_job as t1 inner join t_collect_job_bureau as t2 on t1.job_id=t2.job_id
select t1.* from t_collect_job as t1 inner join t_collect_job_bureau as t2 on t1.job_id=t2.job_id
where t2.bureau_id = #para(bureau_id)
#if(is_finish)
and t2.is_finish= #para(is_finish)
@ -44,7 +44,7 @@
#if(keyword)
and t1.job_name like #para(keyword, "like")
#end
order by t1.create_time desc
order by t1.job_id desc
#end
-- 任务发布者,查看发布的任务填充情况
#sql("listFilledJob")

Loading…
Cancel
Save