3 changed files with 59 additions and 0 deletions
@ -0,0 +1,22 @@ |
|||
package com.elink.esua.epdc.dto; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @program: epdc-cloud-news-yushan |
|||
* @description: |
|||
* @author: wangtong |
|||
* @create: 2021-09-13 17:05 |
|||
**/ |
|||
@Data |
|||
public class AppModuleListDTO implements Serializable { |
|||
|
|||
private String id; |
|||
|
|||
private String name; |
|||
|
|||
private String imgUrl; |
|||
|
|||
} |
@ -0,0 +1,32 @@ |
|||
package com.elink.esua.epdc.dto; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotNull; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @program: epdc-cloud-news-yushan |
|||
* @description: |
|||
* @author: wangtong |
|||
* @create: 2021-09-13 16:57 |
|||
**/ |
|||
@Data |
|||
public class ModuleListFormDTO implements Serializable { |
|||
|
|||
|
|||
private String pid; |
|||
|
|||
/** |
|||
* 页码 -必传项 |
|||
*/ |
|||
@NotNull(message = "页码 不能为空") |
|||
private Integer pageIndex; |
|||
|
|||
/** |
|||
* 页容量 -必传项 |
|||
*/ |
|||
@NotNull(message = "页容量 不能为空") |
|||
private Integer pageSize; |
|||
|
|||
} |
Loading…
Reference in new issue