Commit 4b0eb472 authored by wangxl's avatar wangxl

1

parent 4d782f5f
......@@ -27,7 +27,7 @@ public class ComEvaluationValue extends BaseEntity {
private String detail;
/** 数量 */
@ApiModelProperty(value = "数量", position = 2)
private Integer count;
private BigDecimal count;
/** 总分 */
@ApiModelProperty(value = "总分", position = 3)
private BigDecimal score;
......
......@@ -30,7 +30,7 @@ public class ComEvaluationValueDTO extends BaseDTO {
private String detail;
/** 数量 */
@ApiModelProperty(value = "数量", position = 2)
private Integer count;
private BigDecimal count;
/** 总分 */
@ApiModelProperty(value = "总分", position = 3)
private BigDecimal score;
......
......@@ -40,7 +40,7 @@ public class ComEvaluationValueQueryVO extends PaginationVO {
private String detail;
/** 数量 */
@ApiModelProperty(value = "数量", position = 2)
private Integer count;
private BigDecimal count;
/** 总分 */
@ApiModelProperty(value = "总分", position = 3)
private BigDecimal score;
......
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