refactor(payment): 移除 PayProduct icon 字段(实体/Result/Service), 图标改由前端维护

This commit is contained in:
DaxPay Dev
2026-07-07 22:13:06 +08:00
parent ec6718dddc
commit 47a5ecc1a0
3 changed files with 0 additions and 7 deletions

View File

@@ -31,9 +31,6 @@ public class PayProduct extends MpBaseEntity implements ToResult<PayProductResul
/// 产品介绍
private String description;
/// 图标
private String icon;
/// 排序
private Integer sortNo;

View File

@@ -34,9 +34,6 @@ public class PayProductResult extends BaseResult {
@Schema(description = "产品介绍")
private String description;
@Schema(description = "图标")
private String icon;
@Schema(description = "排序")
private Integer sortNo;

View File

@@ -113,7 +113,6 @@ public class PayProductService {
result.setEnabled(dbRow.isEnabled());
result.setSortNo(dbRow.getSortNo());
result.setDescription(dbRow.getDescription());
result.setIcon(dbRow.getIcon());
if (dbRow.getSandbox() != null) {
result.setSandbox(dbRow.getSandbox());
}