Commit 4b0eb472 authored by wangxl's avatar wangxl

1

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