2 changed files with 25 additions and 0 deletions
@ -0,0 +1,20 @@ |
|||
package com.elink.esua.epdc.dto.personroom.form; |
|||
|
|||
import com.elink.esua.epdc.commons.tools.validator.group.DefaultGroup; |
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @program: epmet-cloud |
|||
* @description: |
|||
* @author: wangtong |
|||
* @create: 2022-06-01 13:44 |
|||
**/ |
|||
@Data |
|||
public class HouseQrcodeZipFormDTO implements Serializable { |
|||
|
|||
@NotBlank(message = "网格id不可为空", groups = DefaultGroup.class) |
|||
private String gridId; |
|||
} |
Loading…
Reference in new issue