Commit 080cf3a6 by Suvalue

疾病排序类型改为字符串类型

parent 04f2419d
......@@ -12,7 +12,7 @@ public class SerDisease {
private BigDecimal date;
private BigDecimal mdcNum;
private String mdcNum;
private BigDecimal parentId;
......@@ -54,11 +54,11 @@ public class SerDisease {
this.date = date;
}
public BigDecimal getMdcNum() {
public String getMdcNum() {
return mdcNum;
}
public void setMdcNum(BigDecimal mdcNum) {
public void setMdcNum(String mdcNum) {
this.mdcNum = mdcNum;
}
......
......@@ -9,7 +9,7 @@ public class DiseaseLevel {
private String mdcCode;
private String mdcName;
private BigDecimal date;
private BigDecimal mdcNum;
private String mdcNum;
private BigDecimal parentId;
private BigDecimal level;
private BigDecimal orgId;
......@@ -48,11 +48,11 @@ public class DiseaseLevel {
this.date = date;
}
public BigDecimal getMdcNum() {
public String getMdcNum() {
return mdcNum;
}
public void setMdcNum(BigDecimal mdcNum) {
public void setMdcNum(String mdcNum) {
this.mdcNum = mdcNum;
}
......
......@@ -6,7 +6,7 @@
<result column="MDC_CODE" jdbcType="VARCHAR" property="mdcCode" />
<result column="MDC_NAME" jdbcType="VARCHAR" property="mdcName" />
<result column="DATE" jdbcType="DECIMAL" property="date" />
<result column="MDC_NUM" jdbcType="DECIMAL" property="mdcNum" />
<result column="MDC_NUM" jdbcType="VARCHAR" property="mdcNum" />
<result column="PARENT_ID" jdbcType="DECIMAL" property="parentId" />
<result column="LEVEL" jdbcType="DECIMAL" property="level" />
<result column="ORG_ID" jdbcType="DECIMAL" property="orgId" />
......@@ -17,7 +17,7 @@
<result column="MDC_CODE" jdbcType="VARCHAR" property="mdcCode" />
<result column="MDC_NAME" jdbcType="VARCHAR" property="mdcName" />
<result column="DATE" jdbcType="DECIMAL" property="date" />
<result column="MDC_NUM" jdbcType="DECIMAL" property="mdcNum" />
<result column="MDC_NUM" jdbcType="VARCHAR" property="mdcNum" />
<result column="PARENT_ID" jdbcType="DECIMAL" property="parentId" />
<result column="LEVEL" jdbcType="DECIMAL" property="level" />
<result column="ORG_ID" jdbcType="DECIMAL" property="orgId" />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment