|
@@ -55,7 +55,7 @@ public class MrtestInfo implements Serializable {
|
|
/**
|
|
/**
|
|
* 医院id
|
|
* 医院id
|
|
*/
|
|
*/
|
|
- @Excel(name = "医院id", isImportField = "true")
|
|
|
|
|
|
+ @Excel(name = "医院id", orderNum = "1", isImportField = "true")
|
|
private Long hospitalId;
|
|
private Long hospitalId;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -66,64 +66,67 @@ public class MrtestInfo implements Serializable {
|
|
/**
|
|
/**
|
|
* 病历号
|
|
* 病历号
|
|
*/
|
|
*/
|
|
- @Excel(name = "病历号", isImportField = "true")
|
|
|
|
|
|
+ @Excel(name = "病历号", orderNum = "2", isImportField = "true")
|
|
private String mrCode;
|
|
private String mrCode;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 字段来源
|
|
* 字段来源
|
|
*/
|
|
*/
|
|
- @Excel(name = "字段来源", isImportField = "true")
|
|
|
|
|
|
+ @Excel(name = "字段来源", orderNum = "3", isImportField = "true")
|
|
private String textSource;
|
|
private String textSource;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 原始文本
|
|
* 原始文本
|
|
*/
|
|
*/
|
|
- @Excel(name = "原始文本", isImportField = "true")
|
|
|
|
|
|
+ @Excel(name = "原始文本", orderNum = "4", isImportField = "true")
|
|
private String text;
|
|
private String text;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 原始词
|
|
* 原始词
|
|
*/
|
|
*/
|
|
- @Excel(name = "原始词", isImportField = "true")
|
|
|
|
|
|
+ @Excel(name = "原始词", orderNum = "5", isImportField = "true")
|
|
private String word;
|
|
private String word;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 替换后文本
|
|
* 替换后文本
|
|
*/
|
|
*/
|
|
- @Excel(name = "替换后文本", isImportField = "true")
|
|
|
|
|
|
+ @Excel(name = "替换后文本", orderNum = "6", isImportField = "true")
|
|
private String replaceText;
|
|
private String replaceText;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 替换词
|
|
* 替换词
|
|
*/
|
|
*/
|
|
- @Excel(name = "替换词", isImportField = "true")
|
|
|
|
|
|
+ @Excel(name = "替换词", orderNum = "7", isImportField = "true")
|
|
private String replaceWord;
|
|
private String replaceWord;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 开单项类型
|
|
* 开单项类型
|
|
*/
|
|
*/
|
|
- @Excel(name = "开单项类型", isImportField = "true")
|
|
|
|
|
|
+ @Excel(name = "开单项类型", orderNum = "8", isImportField = "true")
|
|
private String billType;
|
|
private String billType;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 开单项
|
|
* 开单项
|
|
*/
|
|
*/
|
|
- @Excel(name = "开单项", isImportField = "true")
|
|
|
|
|
|
+ @Excel(name = "开单项", orderNum = "9", isImportField = "true")
|
|
private String billName;
|
|
private String billName;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 结果
|
|
* 结果
|
|
*/
|
|
*/
|
|
|
|
+ @Excel(name = "结果", orderNum = "10")
|
|
private String result;
|
|
private String result;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 是否通过 0:未通过,1:未通过
|
|
* 是否通过 0:未通过,1:未通过
|
|
*/
|
|
*/
|
|
|
|
+ @Excel(name = "是否通过", orderNum = "11")
|
|
private Integer pass;
|
|
private Integer pass;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 备注
|
|
* 备注
|
|
*/
|
|
*/
|
|
|
|
+ @Excel(name = "备注", orderNum = "12")
|
|
private String remark;
|
|
private String remark;
|
|
|
|
|
|
public Long getId() {
|
|
public Long getId() {
|