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.

13 lines
448 B

2 years ago
#namespace("DataShare")
#sql("listSystem")
1 year ago
select t1.*,
1 year ago
(select count(1) from t_datashare_table as t2 where t2.system_id=t1.system_id) as share_table_count
1 year ago
from t_datashare_system as t1 where
1 year ago
t1.system_name like #para(keyword, "like")
#if(exclude)
and t1.system_id<>#para(exclude)
#end
1 year ago
order by t1.sort_id,t1.system_id desc
2 years ago
#end
#end