6 changed files with 59 additions and 1 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/26 5:19 下午 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Data |
||||
|
public class CancelAppointmentFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 8646430374802086292L; |
||||
|
|
||||
|
public interface CancelAppointmentForm{} |
||||
|
|
||||
|
@NotBlank(message = "recordId不能为空",groups = CancelAppointmentForm.class) |
||||
|
private String recordId; |
||||
|
} |
Loading…
Reference in new issue