命令模式可以返回值吗? [交易]

发布于 2025-01-14 20:20:06 字数 574 浏览 3 评论 0原文

我一直在从事一个小型核心银行项目。我想问一个问题。

假设我们有一个事务微服务。交易请求已发送至我们的服务。存储并完成这笔交易后,返回交易信息是否正确?

这是一个过程示例。

     INPUT
   • Account ID
   • Amount
   • Currency
   • Direction of transaction (IN, OUT)
   • Description

     OUTPUT
   • Account ID
   • Transaction ID
   • Amount
   • Currency
   • Direction of transaction
   • Description
   • Balance after transaction

     ERROR
   • Invalid currency
   • Invalid direction
   • Invalid amount (if negative amount for example)
   • Insufficient funds
   • Account missing
   • Description missing

I have been working on a small core banking project. I would like to ask a question.

Suppose that we have a transaction microservice. A transaction request has been sent to our service. After storing and doing this transaction, Is it right to return transaction informations?

Here is an example of process.

     INPUT
   • Account ID
   • Amount
   • Currency
   • Direction of transaction (IN, OUT)
   • Description

     OUTPUT
   • Account ID
   • Transaction ID
   • Amount
   • Currency
   • Direction of transaction
   • Description
   • Balance after transaction

     ERROR
   • Invalid currency
   • Invalid direction
   • Invalid amount (if negative amount for example)
   • Insufficient funds
   • Account missing
   • Description missing

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

随心而道 2025-01-21 20:20:06

一般来说,命令没有理由不能有响应/返回值,而不仅仅是命令成功/失败。

There's in general no reason that a command couldn't have a response/return value with more than just command succeeded/failed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文