forked from rongchao/epmet-cloud-rizhao
15 changed files with 190 additions and 17 deletions
@ -0,0 +1,25 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.Valid; |
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import javax.validation.constraints.NotEmpty; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author yzm |
||||
|
* @Date 2022/10/12 11:00 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class DelIssueFormDTO { |
||||
|
@NotBlank(message = "customerId不能为空") |
||||
|
private String customerId; |
||||
|
@NotBlank(message = "userId不能为空") |
||||
|
private String userId; |
||||
|
@Valid |
||||
|
@NotEmpty(message = "issueIds不能为空") |
||||
|
private List<String> issueIds; |
||||
|
} |
||||
|
|
Loading…
Reference in new issue