123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?xml version="1.0" encoding="UTF-8"?>
- <das-client>
- <Sqls>
- <Sql name='test'><![CDATA[
- select 1
- ]]></Sql>
- <Sql name='M_QueryMsgTempView'><![CDATA[
- select @a from m_msgtemp_view where 1=1 @b
- ]]></Sql>
- <Sql name='M_QueryMsgPush'><![CDATA[
- select @a from M_MSGPUSH where 1=1 @b
- ]]></Sql>
- <Sql name='M_QueryMsgTemp'><![CDATA[
- select @a from M_MSGTEMP where 1=1 @b order by begin desc
- ]]></Sql>
- <Sql name='M_QuerySendTemp'><![CDATA[
- select @a from M_SENDTEMP where 1=1 @b
- ]]></Sql>
- <!-- 异常提醒设置 -->
- <Sql name='M_QueryYctxsz'><![CDATA[
- select * from M_YCTXSZ t where 1=1 @a
- ]]></Sql>
- <Sql name='M_QueryCountYctxsz'><![CDATA[
- select count(*) from M_YCTXSZ t
- ]]></Sql>
- <!-- 删除 -->
- <Sql name='M_Delete_MsgTemp'><![CDATA[
- delete from M_MSGTEMP where 1=1 @b
- ]]></Sql>
- <Sql name='M_QueryMsgMobile'><![CDATA[
- select msgid,mobile,msg,state,orderid,comefrom,remark
- from M_MSG_MOBILE
- where 1=1
- and state=1
- order by inserttime desc
- ]]></Sql>
- <Sql name='M_UpdateMsgMobile'><![CDATA[
- update M_MSG_MOBILE set state=?,remark=?,sendtime=?
- where 1=1
- and msgid=?
- ]]></Sql>
- <Sql name='M_UpdateMsgPush'><![CDATA[
- update M_MSGPUSH set pushresult=?
- where 1=1
- and msgpushid=?
- ]]></Sql>
- </Sqls>
- </das-client>
|