Compare commits

..

No commits in common. "9190b6e6b27c5ae60dcd3212abaf7660d3acbadb" and "ea7b64c9f6041e6a1edc13de03f3871dbb76f0be" have entirely different histories.

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);
if (itemVO.getTenantId() != null) {
SysTenantVo tenant = tenantService.queryByTenantId(vo.getTenantId());
itemVO.setTenantName(tenant.getStoreName());
itemVO.setTenantName(tenant.getShopName());
}
//赋值
return itemVO;

View File

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