From 7ca8e050284b80a73e77f91491872568c183d8cc Mon Sep 17 00:00:00 2001 From: sxu <602087911@qq.com> Date: Mon, 16 Dec 2024 18:12:33 +0800 Subject: [PATCH] order info improvement --- .../java/com/bonus/material/order/domain/OrderInfoDto.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bonus-modules/bonus-material-mall/src/main/java/com/bonus/material/order/domain/OrderInfoDto.java b/bonus-modules/bonus-material-mall/src/main/java/com/bonus/material/order/domain/OrderInfoDto.java index b48b674..671c42f 100644 --- a/bonus-modules/bonus-material-mall/src/main/java/com/bonus/material/order/domain/OrderInfoDto.java +++ b/bonus-modules/bonus-material-mall/src/main/java/com/bonus/material/order/domain/OrderInfoDto.java @@ -63,9 +63,9 @@ public class OrderInfoDto { @ApiModelProperty(value = "买方承租方用户id") private Integer buyerId; @ApiModelProperty(value = "买方承租方用户名字") - private Integer buyerName; + private String buyerName; @ApiModelProperty(value = "卖方出租方用户名字") - private Integer sellerName; + private String sellerName; @ApiModelProperty(value = "买方承租方公司id") private Integer buyerCompany;