5 changed files with 37 additions and 7 deletions
@ -0,0 +1,26 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import com.epmet.commons.tools.dto.form.PageFormDTO; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotNull; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author lc |
||||
|
* @Date 2022/6/28 15:06 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class HouseMicroGridPageFormDTO extends PageFormDTO implements Serializable { |
||||
|
|
||||
|
public interface HouseMicroGridPage { |
||||
|
} |
||||
|
|
||||
|
@NotNull(message = "microGridId不可为空",groups = HouseMicroGridPageFormDTO.HouseMicroGridPage.class) |
||||
|
private String microGridId; |
||||
|
private Integer pageNo; |
||||
|
|
||||
|
|
||||
|
private Integer pageSize; |
||||
|
} |
Loading…
Reference in new issue