|
@@ -0,0 +1,51 @@
|
|
|
+package com.lantone.daqe.dto;
|
|
|
+
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description:
|
|
|
+ * @author: zhanghang
|
|
|
+ * @time: 2022/3/1 10:30
|
|
|
+ */
|
|
|
+@ApiModel(value = "获取字段校验规则维护数据-接口出参")
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
+public class GetFieldCalibrationPageDTO implements Serializable {
|
|
|
+
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 8948737933723938941L;
|
|
|
+ @ApiModelProperty(value = "组织机构ID")
|
|
|
+ private Long hospitalId;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "序号")
|
|
|
+ private Long Id;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "表字段(中文)")
|
|
|
+ private String tableFieldChinese;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "表字段(英文)")
|
|
|
+ private String tableFieldEnglish;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "字段名称(中文)")
|
|
|
+ private String fieldNameChinese;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "字段名称(英文)")
|
|
|
+ private String fieldNameEnglish;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "是否必填")
|
|
|
+ private String ifRequired;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "标准值")
|
|
|
+ private String standardValue;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "正则式名称")
|
|
|
+ private String regularName;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "说明")
|
|
|
+ private String instructions;
|
|
|
+}
|