段飞宇
1 year ago
8 changed files with 71 additions and 29 deletions
@ -0,0 +1,35 @@ |
|||||||
|
package com.hnac.hzinfo.inspect.obj.request; |
||||||
|
|
||||||
|
import com.hnac.hzinfo.inspect.obj.dto.ContentDTO; |
||||||
|
import io.swagger.annotations.ApiModel; |
||||||
|
import io.swagger.annotations.ApiModelProperty; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.EqualsAndHashCode; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* @ClassName ProjectContentRequest |
||||||
|
* @description: |
||||||
|
* @author: hx |
||||||
|
* @create: 2023-07-10 15:53 |
||||||
|
* @Version 4.0 |
||||||
|
**/ |
||||||
|
@Data |
||||||
|
@ApiModel("巡检项目-巡检内容feign接口查询对象") |
||||||
|
@EqualsAndHashCode |
||||||
|
public class ProjectContentRequest implements Serializable { |
||||||
|
|
||||||
|
@ApiModelProperty("设备编号") |
||||||
|
private String emCode; |
||||||
|
|
||||||
|
@ApiModelProperty("巡检内容查询条件") |
||||||
|
private ContentDTO contentDTO; |
||||||
|
|
||||||
|
@ApiModelProperty("当前页") |
||||||
|
private int current; |
||||||
|
|
||||||
|
@ApiModelProperty("当前页条数,-1为查询所有") |
||||||
|
private int size; |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue