package com.example.order.domain.model; @Entity public class Order { @Id private OrderId id; private CustomerId customerId; private Money totalAmount; private OrderStatus status; private Set<OrderItem> items; public Order(CustomerId customerId, Set<OrderItem> items) { this.id = new OrderId(...
www.dbjr.com.cn/program/3427751...htm 2025-6-4