删除冗余接口

This commit is contained in:
2025-08-02 15:49:57 +08:00
parent 6ddbe069a4
commit 48fb7db385
7 changed files with 101 additions and 468 deletions

View File

@@ -0,0 +1,19 @@
package com.klp.domain.vo;
import lombok.Data;
/**
* 属性信息
*/
@Data
public class AttributeVo {
/**
* 属性名称
*/
private String attrKey;
/**
* 属性值
*/
private String attrValue;
}