Commit 59346168 authored by liming's avatar liming

课程相关模块微调

parent 54123f73
...@@ -25076,9 +25076,9 @@ ...@@ -25076,9 +25076,9 @@
{ {
"objectType": "TableField_MYSQL", "objectType": "TableField_MYSQL",
"name": "target_value", "name": "target_value",
"type": "int", "type": "decimal",
"length": -2147483648, "length": 18,
"decimals": -2147483648, "decimals": 2,
"isUnsigned": false, "isUnsigned": false,
"isZeroFill": false, "isZeroFill": false,
"setEnumValues": "", "setEnumValues": "",
......
...@@ -51,7 +51,7 @@ public class CourseItem implements Serializable { ...@@ -51,7 +51,7 @@ public class CourseItem implements Serializable {
/** /**
* 目标值 * 目标值
*/ */
private Integer targetValue; private BigDecimal targetValue;
/** /**
* 允许偏差 * 允许偏差
......
...@@ -18,7 +18,7 @@ public class CourseItemVO { ...@@ -18,7 +18,7 @@ public class CourseItemVO {
@ApiModelProperty("指标值类型") @ApiModelProperty("指标值类型")
private Integer targetValueType; private Integer targetValueType;
@ApiModelProperty("目标值") @ApiModelProperty("目标值")
private Integer targetValue; private BigDecimal targetValue;
@ApiModelProperty("允许偏差") @ApiModelProperty("允许偏差")
private BigDecimal allowableDeviation; private BigDecimal allowableDeviation;
@ApiModelProperty("持续时长s") @ApiModelProperty("持续时长s")
......
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