package com.muyu.button; /** * @className: ClickButton ️✈️ * @author: Yang 鹏 🦅 * @date: 2024/9/18 21:00 ⏰ * @Version: 1.0 * @description: */ public class ClickButton extends AbstractButton{ public ClickButton(String name) { super(name); this.type="click"; } private String type; private String key; public String getType() { return type; } public String getKey() { return key; } public void setKey(String key) { this.key = key; } }