Commit 98fa56bb authored by realize1020's avatar realize1020

BigDecimal 改String

parent e342ff85
......@@ -102,7 +102,7 @@ public class SupplierEvaluationResult extends Model<SupplierEvaluationResult> {
@TableField("PRICE_FINAL_SCORE")
private BigDecimal priceFinalScore;
@TableField("VETO_TYPE")
private BigDecimal vetoType;
private String vetoType;
......@@ -242,11 +242,11 @@ public class SupplierEvaluationResult extends Model<SupplierEvaluationResult> {
this.priceFinalScore = priceFinalScore;
}
public BigDecimal getVetoType() {
public String getVetoType() {
return vetoType;
}
public void setVetoType(BigDecimal vetoType) {
public void setVetoType(String vetoType) {
this.vetoType = vetoType;
}
......
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