| New file |
| | |
| | | package com.oying.modules.sh.domain.vo; |
| | | |
| | | import com.oying.modules.sh.domain.OrderAddressSnapshot; |
| | | import com.oying.modules.sh.domain.OrderOperationLog; |
| | | import com.oying.modules.sh.domain.OrderReturn; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Getter; |
| | | import lombok.Setter; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author xin |
| | | * @description |
| | | * @date 2025/8/19 22:14 |
| | | */ |
| | | @Getter |
| | | @Setter |
| | | @AllArgsConstructor |
| | | public class OrderReturnResponse { |
| | | |
| | | private OrderReturn orderReturn; |
| | | |
| | | private OrderAddressSnapshot address; |
| | | |
| | | private List<OrderOperationLog> operation; |
| | | } |