• This project
    • Loading...
  • Sign in

fastcoding / commonProject

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • commonProject
  • ..
  • pop
  • SwitchSettingBean.java
  • 添加模块 · 3429c014
    3429c014 Browse Files
    wangkai authored 2024-11-08 16:55:29 +0800
SwitchSettingBean.java 392 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
package com.wd.foundation.bean.pop;

import java.io.Serializable;

public class SwitchSettingBean implements Serializable {
    /**
     * 状态 true已开启、false未开启
     * */
    public boolean isOpenSwitch;
    /**
     * 名称
     * */
    public String name;
    /**
     * 类型
     * */
    public int type;
    /**
     * 提示内容
     * */
    public String tip;
}