1 Star 0 Fork 8

Happy小瓶盖/Xipkpublib_Update

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
GetTomTrDate.c 1.12 KB
一键复制 编辑 原始数据 按行查看 历史
suitianmou 提交于 2016-03-17 14:03 . ʼ1.2汾
/*******************************************************
* 公 司: 大连同方软银科技有限公司
* 程 序 名: 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);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liuze5516/Xipkpublib_Update.git
git@gitee.com:liuze5516/Xipkpublib_Update.git
liuze5516
Xipkpublib_Update
Xipkpublib_Update
master

搜索帮助