Compare commits

...

2 Commits

2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ public class OrderBusinessImpl extends BusinessImpl<OrderService, OrderConvert,
OrderItemVO itemVO=orderItemConvert.toVO(item); OrderItemVO itemVO=orderItemConvert.toVO(item);
if (itemVO.getTenantId() != null) { if (itemVO.getTenantId() != null) {
SysTenantVo tenant = tenantService.queryByTenantId(vo.getTenantId()); SysTenantVo tenant = tenantService.queryByTenantId(vo.getTenantId());
itemVO.setTenantName(tenant.getShopName()); itemVO.setTenantName(tenant.getStoreName());
} }
//赋值 //赋值
return itemVO; return itemVO;

View File

@ -80,7 +80,7 @@ public class SysTenantVo implements Serializable {
private LocalDateTime expireTime; private LocalDateTime expireTime;
@Schema(description = "店铺名称") @Schema(description = "店铺名称")
private String shopName; private String storeName;
@Schema(description = "企业类型") @Schema(description = "企业类型")
private String companyType; private String companyType;