企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 组件源码 ``` /** * <b>方法描述:</b> 当前时间(date) <br/> * <b>创建者:</b> admin <br/> * <b>创建时间:</b> 2020-12-18 09:58:01 <br/> * * @param date * 出参|当前日期时间|{@link java.util.Date} * @return 1 成功<br/> */ @Component(label = "当前时间(date)", style = "判断型", type = "同步组件", version = "1.0.0", deprecated = false, author = "admin", date = "2020-12-18 09:58:01") @OutParams(param = {@Param(name = "date", comment = "当前日期时间", type = java.util.Date.class)}) @Returns(returns = {@Return(id = "1", desp = "成功")}) @Order(value = 2) public static ResultBase P_currentDate() { return ResultBase.newSuccessResult(new Date()); } ``` # 交易中组件使用方式 ![](https://img.kancloud.cn/2c/46/2c46e4121b10d32fb90542843525d979_1870x891.png) # 参数说明及示例 ## 出口参数 当前日期时间:现在的系统时间:示例: `__INNER__["date"]`