master
周文涛 2 years ago
parent cc14a88c18
commit bc992b5f13

@ -37,8 +37,9 @@ public class OcrRuleCheckSaveModel implements Serializable {
/**选择的元数据明细id*/
@ApiModelProperty(value = "选择的元数据id")
public String metadataConfigId;
@ApiModelProperty(value = "元数据配置名称")
@Excel(name = "元数据配置名称", width = 15,fixedIndex = 9)
@Excel(name = "元数据配置名称", width = 15)
private String metadataConfigName;
/**选择的元数据明细id*/
//@ApiModelProperty(value = "选择的元数据明细id")

@ -27,9 +27,16 @@ import java.util.Map;
@Data
public class OcrRuleCheckVo extends OcrRuleCheck {
private static final long serialVersionUID = 1L;
@Excel(name = "配置名称", width = 15)
@ApiModelProperty(value = "配置名称")
private String configName;
/**配置规则*/
@Excel(name = "配置规则", width = 15)
@ApiModelProperty(value = "配置规则")
private String configRule;
@ApiModelProperty(value = "元数据配置名称")
@Excel(name = "元数据配置名称", width = 15,fixedIndex = 9)
@Excel(name = "元数据配置名称", width = 15)
private String metadataConfigName;
private Map<String,String> configRuleMap=new LinkedHashMap<>();

Loading…
Cancel
Save