Commit 6ad283ce by 丁伟峰

Merge branch 'feat-dingwf-mvp616' into develop

2 parents 18d4412c ab64bfa0
......@@ -32,6 +32,11 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
......
package com.alibaba.cloud.integration.order.dto;
import javax.validation.constraints.NotEmpty;
@lombok.Data
public class CapacityStatQueryReqDTO {
@NotEmpty
private String startDate;
@NotEmpty
private String endDate;
/**
* cluster/branch/group
*/
@NotEmpty
private String levelType;
/**
* clusterId/branchId/groupId
*/
@NotEmpty
private String levelValue;
private Integer page;
private Integer size;
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!