6 changed files with 92 additions and 0 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/12/28 5:05 下午 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class PartyServiceCenterDetailFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 8849427528238500433L; |
|||
|
|||
public interface PartyServiceCenterDetailForm{} |
|||
|
|||
@NotBlank(message = "partyServiceCenterId不能为空",groups = PartyServiceCenterDetailForm.class) |
|||
private String partyServiceCenterId; |
|||
} |
Loading…
Reference in new issue