You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
453 B
Java
29 lines
453 B
Java
package com.glxp.api.req.dev;
|
|
|
|
import com.glxp.api.enums.dev.DeviceStatusEnum;
|
|
import com.glxp.api.util.page.ListPageRequest;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class DeviceInfoQuery extends ListPageRequest {
|
|
|
|
private DeviceStatusEnum status;
|
|
|
|
/**
|
|
* 设备编码
|
|
*/
|
|
private String deviceCode;
|
|
|
|
/**
|
|
* 部门编码
|
|
*/
|
|
private String deptCode;
|
|
|
|
/**
|
|
* 设备名称
|
|
*/
|
|
private String productName;
|
|
|
|
|
|
}
|