5 changed files with 61 additions and 2 deletions
@ -0,0 +1,22 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2021/11/19 4:19 下午 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class DelCommunitySelfOrganizationFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 789228513283561471L; |
||||
|
|
||||
|
public interface DelCommunitySelfOrganizationForm{} |
||||
|
|
||||
|
@NotBlank(message = "orgId不能为空",groups = DelCommunitySelfOrganizationForm.class) |
||||
|
private String orgId; |
||||
|
} |
Loading…
Reference in new issue