Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
yangxiujun
/
paidan_demo
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit ab64bfa0
authored
Jun 15, 2023
by
丁伟峰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加了valid
1 parent
82ca7f40
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
project-order/pom.xml
project-order/src/main/java/com/alibaba/cloud/integration/order/dto/CapacityStatQueryReqDTO.java
project-order/pom.xml
View file @
ab64bfa
...
@@ -26,6 +26,11 @@
...
@@ -26,6 +26,11 @@
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-validation
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-jdbc
</artifactId>
<artifactId>
spring-boot-starter-jdbc
</artifactId>
</dependency>
</dependency>
...
...
project-order/src/main/java/com/alibaba/cloud/integration/order/dto/CapacityStatQueryReqDTO.java
View file @
ab64bfa
package
com
.
alibaba
.
cloud
.
integration
.
order
.
dto
;
package
com
.
alibaba
.
cloud
.
integration
.
order
.
dto
;
import
javax.validation.constraints.NotEmpty
;
@lombok
.
Data
@lombok
.
Data
public
class
CapacityStatQueryReqDTO
{
public
class
CapacityStatQueryReqDTO
{
@NotEmpty
private
String
startDate
;
private
String
startDate
;
@NotEmpty
private
String
endDate
;
private
String
endDate
;
/**
/**
* cluster/branch/group
* cluster/branch/group
*/
*/
@NotEmpty
private
String
levelType
;
private
String
levelType
;
/**
/**
* clusterId/branchId/groupId
* clusterId/branchId/groupId
*/
*/
@NotEmpty
private
String
levelValue
;
private
String
levelValue
;
private
Integer
page
;
private
Integer
page
;
private
Integer
size
;
private
Integer
size
;
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment