| 123456789101112131415161718192021222324252627282930 |
- package com.ydtech.constants.enums.dict.agreement;
- import lombok.AllArgsConstructor;
- import lombok.Getter;
- /**
- * @version
- * @description: 是否有效
- * @author: wenks
- * @date: 2024/1/17 17:40
- **/
- @AllArgsConstructor
- @Getter
- public enum ValidStatus {
- VS_1("1", "有效", 1, 0),
- VS_2("0", "无效", 2, 0);
- // 编号
- private final String code;
- // 说明
- private final String desc;
- // 排序
- private final Integer sort;
- // 状态 0 启用 1 不启用
- private final Integer status;
- }
|