You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
335 B

10 months ago
-- 菜单命名空间
#namespace("Base")
#sql("listScheme")
10 months ago
select * from t_resource_scheme where b_use=1
10 months ago
#if(stage_id)
and stage_id=#para(stage_id)
#end
#if(subject_id)
and subject_id=#para(subject_id)
#end
10 months ago
order by stage_id,sort_id
10 months ago
#end
#end