代码拉取完成,页面将自动刷新
同步操作将从 icesky1stm/Xipkpublib_Update 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/*******************************************************
* 公 司: 大连同方软银科技有限公司
* 程 序 名: GetTomTrDate.c
* 程序功能: 获取渠道下一天日期
* 输入参数:
* xipId 渠道标识
* 输出参数:
* tomTradeDate 下一天日期
* replyCode 响应代码
* 返 回 值:
* =0 成功
* !0 失败
* 作 者: yangwc
* 开发日期: 2007/1
* 修 改 人:
* 修改日期:
*******************************************************/
#include "kernel/syspub.h"
#include "kernel/xipcmstc.h"
#include "kernel/tabincl/xip_sysdate_c.h"
int GetTomTrDate(char *xipId, long *tomTradeDate, char *replyCode)
{
struct xip_sysdate_c date;
char sqlStr[101];
int ret = 0;
if (xipId == NULL || xipId[0] == 0 || strlen(xipId) <= 0) /*V1.1调整*/
{
strcpy(sqlStr, "xip_type='L'");
}
else
{
strtrim(xipId);
sprintf(sqlStr, "xip_id='%s'", xipId);
}
ret = Xip_sysdate_Sel(replyCode, &date, sqlStr);
if (ret)
{
XIPLOG("E", "CALL Xip_sysdate_Sel ERR = [%d]", ret);
return -5;
}
*tomTradeDate = date.xip_tdate;
return(0);
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。