添加缺失字段

This commit is contained in:
gong
2025-12-19 10:50:20 +08:00
parent 5d4d853355
commit 6efcf0e639
4 changed files with 35 additions and 2 deletions

View File

@@ -48,5 +48,8 @@ public interface PpPackageService extends IService<PpPackage> {
PpPackage getPackageById(Long id);
PpPackageVO getPackageDetail(Long id);
PpPackageVO convertPackageToVo(PpPackage ppPackage);
}

View File

@@ -182,4 +182,19 @@ public class PpPackageVO {
* 已售数量
*/
private Integer saleNum;
/**
* 店铺名称
*/
private String shopName;
/**
* 店铺logo
*/
private String shopLogo;
/**
* 店铺地址
*/
private String shopAddress;
}