1234567891011121314151617181920 |
- <?xml version="1.0" encoding="UTF-8"?>
- <properties>
-
- <property name="send">
- <![CDATA[
- insert into TD_FLOWER_ORDER (ID,USERID,AMOUNT,VACSTATUS,VACTIME,VACAMOUNT,CPID,CHANNEL,SEQUENCE,PROVINCE,AREA,REMAINAMOUNT,SENDTIME,SYNCCOUNT,SYNCSUCCEED,SPID) values (
- to_char(sysdate,'yyyyMMddhh24miss')||SEQ_COMMON6.nextval,
- #[userid],#[amount],#[vacstatus],'',
- #[vacamount],#[cpid],#[channel],#[sequence],#[province],#[area],
- #[remainamount],sysdate,#[synccount],#[syncsucceed],#[spid])
- ]]>
- </property>
-
- <property name="queryuserid">
- <![CDATA[
- select userid from TD_FLOWER_ORDER where cpid=? and to_char(sendtime,'yyyymm')=? and channel not in (select channel from TB_CHANNELCONTROL_FLOWER where status = 1)
- ]]>
- </property>
-
- </properties>
|