mirror of
https://gitee.com/dromara/dax-pay
synced 2026-08-10 06:46:04 +08:00
refactor(payment): 移除 PayProduct icon 字段(实体/Result/Service), 图标改由前端维护
This commit is contained in:
@@ -31,9 +31,6 @@ public class PayProduct extends MpBaseEntity implements ToResult<PayProductResul
|
||||
/// 产品介绍
|
||||
private String description;
|
||||
|
||||
/// 图标
|
||||
private String icon;
|
||||
|
||||
/// 排序
|
||||
private Integer sortNo;
|
||||
|
||||
|
||||
@@ -34,9 +34,6 @@ public class PayProductResult extends BaseResult {
|
||||
@Schema(description = "产品介绍")
|
||||
private String description;
|
||||
|
||||
@Schema(description = "图标")
|
||||
private String icon;
|
||||
|
||||
@Schema(description = "排序")
|
||||
private Integer sortNo;
|
||||
|
||||
|
||||
@@ -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());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user