feat(标准解读流程): 获取条款数据接口

This commit is contained in:
yjz
2024-07-05 16:52:33 +08:00
parent 4a09887562
commit 71c3ef87bb
10 changed files with 154 additions and 15 deletions
@@ -1,13 +1,12 @@
package com.jero.common.system.vo;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import java.io.Serializable;
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@@ -17,12 +16,12 @@ public class DictModel implements Serializable{
public DictModel() {
}
public DictModel(String value, String text) {
this.value = value;
this.text = text;
}
/**
* 字典value
*/
@@ -31,6 +30,10 @@ public class DictModel implements Serializable{
* 字典文本
*/
private String text;
/**
* 是否置灰(1:是 0:否)
*/
private String isDisabled;
/**
* 特殊用途: JgEditableTable