forked from rongchao/epmet-cloud-rizhao
4 changed files with 61 additions and 5 deletions
@ -0,0 +1,27 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import com.epmet.commons.tools.dto.form.PageFormDTO; |
||||
|
import com.epmet.commons.tools.validator.group.CustomerClientShowGroup; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
|
||||
|
/** |
||||
|
* @Description 疫苗接种情况-列表点击查询详情 |
||||
|
* @Author sun |
||||
|
*/ |
||||
|
@Data |
||||
|
public class IcVaccineFormDTO extends PageFormDTO { |
||||
|
|
||||
|
private static final long serialVersionUID = -6809065476616323072L; |
||||
|
|
||||
|
public interface Detail extends CustomerClientShowGroup { |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 核酸记录Id |
||||
|
*/ |
||||
|
@NotBlank(message = "疫苗接种记录Id不能为空", groups = {Detail.class}) |
||||
|
private String vaccineId; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue