select id, customname, customdesc, creater, createdate,
createtime, appid, props propsStr, subcompanyid, guid,
component
from mode_custompage
union all
select id, customname, customdesc, creater, createdate,
createtime, appid, props propsStr, subcompanyid, guid,
component
from cpt_custompage
select a.*, a.props propsStr
from mode_custompage a
where
a.guid = #{guid}
a.id = #{id}
1=2
union all
select a.*, a.props propsStr
from cpt_custompage a
where
a.guid = #{guid}
a.id = #{id}
1=2
insert into mode_custompage
${item.name}
values
#{item.value}
update mode_custompage
set
${item.name} = #{item.value}
where
guid = #{guid}
id = #{id}
1=2