cloudroam
2024-10-12 24e21f8ce1a28a78a58f9a95cc6438b4a9c737a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.mzl.flower.enums;
 
import lombok.Getter;
 
public enum FlowerCommentShowEnum {
 
 
    SHOW(0),
    HIDE(1),
    ;
 
    @Getter
    private Integer flag;
    private FlowerCommentShowEnum(Integer flag){
      this.flag=flag;
    }
}