Skip to content

Commit

Permalink
Update OmsOrderDetail.java
Browse files Browse the repository at this point in the history
  • Loading branch information
macrozheng committed May 7, 2020
1 parent 89b3f99 commit aa510fb
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import com.macro.mall.model.OmsOrder;
import com.macro.mall.model.OmsOrderItem;
import com.macro.mall.model.OmsOrderOperateHistory;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;

Expand All @@ -15,8 +16,10 @@
public class OmsOrderDetail extends OmsOrder {
@Getter
@Setter
@ApiModelProperty("订单商品列表")
private List<OmsOrderItem> orderItemList;
@Getter
@Setter
@ApiModelProperty("订单操作记录列表")
private List<OmsOrderOperateHistory> historyList;
}

0 comments on commit aa510fb

Please sign in to comment.