feat(标准解读流程): 获取条款数据接口
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user