Commit 59346168 authored by liming's avatar liming

课程相关模块微调

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