💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 组件源码 ``` /** * <b>方法描述:</b> 当前时间(毫秒) <br/> * <b>创建者:</b> admin <br/> * <b>创建时间:</b> 2018-05-08 17:04:58 <br/> * * @param millis * 出参|当前日期时间串|{@link long} * @return 1 成功<br/> */ @Component(label = "当前时间(毫秒)", style = "判断型", type = "同步组件", version = "1.0.0", deprecated = false, author = "admin", date = "2018-05-08 05:04:58") @OutParams(param = { @Param(name = "millis", comment = "当前日期时间串", type = long.class) }) @Returns(returns = { @Return(id = "1", desp = "成功") }) public static ResultBase P_currentTimeMillis() { return ResultBase.newSuccessResult(System.currentTimeMillis()); } ``` # 交易中组件使用方式 ![](https://img.kancloud.cn/70/86/7086db91c19b1370ec328c5d911620fc_1866x892.png) # 参数说明及示例 ## 出口参数 当前日期时间串:返回当前时间的毫秒数,示例: `__INNER__["date"]`