forked from rongchao/epmet-cloud-rizhao
2 changed files with 34 additions and 0 deletions
@ -0,0 +1,25 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
import lombok.NoArgsConstructor; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import javax.validation.constraints.NotEmpty; |
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @author wgf |
|||
* @dscription |
|||
*/ |
|||
@Data |
|||
public class DeleteIcBirthRecordFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -5220529162950147825L; |
|||
/** |
|||
* 主键 |
|||
*/ |
|||
@NotBlank(message = "主键不能为空") |
|||
private String id; |
|||
|
|||
} |
Loading…
Reference in new issue