Sign in

guzijian / bsth-alcohol-sign · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • bsth-alcohol-sign
  • ..
  • enums
  • DelFlagEnum.java
  • 蓝斯对接和前端页面
      a8b19eef
    liujun001 authored
    2024-07-29 14:32:18 +0800  
    Browse Code »
DelFlagEnum.java 317 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package com.ruoyi.domain.enums;

import lombok.Getter;

@Getter
public enum DelFlagEnum {
    YES(true,"已删除"),
    NO(false,"未删除"),
    ;
    private Boolean value;
    private String label;

    DelFlagEnum(boolean value, String label) {
        this.value = value;
        this.label = label;
    }


}