7 changed files with 85 additions and 7 deletions
@ -0,0 +1,26 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2022/9/26 14:34 |
|||
* @DESC |
|||
*/ |
|||
@Data |
|||
public class ConfigSwitchFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 7510856043372376415L; |
|||
|
|||
public interface ConfigSwitchForm{} |
|||
|
|||
@NotBlank(message = "deptCode不能为空",groups = ConfigSwitchForm.class) |
|||
private String deptCode; |
|||
|
|||
@NotBlank(message = "dataSyncConfigId不能为空",groups = ConfigSwitchForm.class) |
|||
private String dataSyncConfigId; |
|||
private String updatedBy; |
|||
} |
Loading…
Reference in new issue