4 changed files with 62 additions and 0 deletions
@ -0,0 +1,23 @@ |
|||
package com.epmet.dataaggre.dto.epmettduck.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import javax.validation.constraints.NotNull; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2021/9/17 10:47 上午 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class TDuckHeaderInfoFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 3624352114576287768L; |
|||
|
|||
public interface TDuckHeaderInfoForm{} |
|||
|
|||
@NotBlank(message = "projectKey不能为空",groups = TDuckHeaderInfoForm.class) |
|||
private String projectKey; |
|||
} |
Loading…
Reference in new issue