| | |
| | | |
| | | import com.ruoyi.common.core.enums.OrderStatusEnum; |
| | | import com.ruoyi.common.core.web.page.BasePage; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | @Data |
| | | @ApiModel(value = "用户订单传输对象", description = "用户订单传输对象") |
| | | public class MemberOrderListDTO extends BasePage { |
| | | @ApiModelProperty("订单id") |
| | | private Long id; |
| | |
| | | |
| | | @ApiModelProperty(value = "订单状态 1=待支付 2=待发货 3=待收货 4=已完成 5=已取消") |
| | | private OrderStatusEnum orderStatus; |
| | | |
| | | @ApiModelProperty("是否售后 1未售后,2 售后") |
| | | private Integer isRequest; |
| | | } |