|
@@ -37,10 +37,6 @@ public class DeviceAlgorithmChargingDto {
|
|
|
@ApiModelProperty("计费信息")
|
|
|
private List<DeviceAlgorithmCharging> deviceAlgorithmChargings;
|
|
|
|
|
|
- @NotNull(message = "chargingSize不能为空")
|
|
|
- @ApiModelProperty("充值数量")
|
|
|
- private Integer chargingSize;
|
|
|
-
|
|
|
@Data
|
|
|
@Accessors(chain = true)
|
|
|
public static class DeviceAlgorithmCharging {
|
|
@@ -51,6 +47,8 @@ public class DeviceAlgorithmChargingDto {
|
|
|
@ApiModelProperty("算法id")
|
|
|
private Long algorithmId;
|
|
|
|
|
|
+ @ApiModelProperty("充值数量")
|
|
|
+ private Integer chargingSize;
|
|
|
}
|
|
|
}
|
|
|
|