| 123456789101112131415161718192021222324252627 |
- package com.xjrsoft.module.generator.entity;
- import lombok.Data;
- /**
- * @title: 按钮配置
- * @Author tzx
- * @Date: 2022/4/17 22:25
- * @Version 1.0
- */
- @Data
- public class ButtonConfig {
- private String name;
- private String code;
- private String icon;
- private Boolean isDefault;
- private Boolean isUse;
- /**
- * 接口地址
- */
- private String redirectUrl;
- }
|