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.
30 lines
541 B
Java
30 lines
541 B
Java
package com.glxp.api.req.dev;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.glxp.api.util.page.ListPageRequest;
|
|
import lombok.Data;
|
|
|
|
import javax.validation.constraints.NotBlank;
|
|
|
|
@Data
|
|
public class DeviceCheckDetailMiniQuery extends ListPageRequest {
|
|
|
|
/**
|
|
* 部门编码
|
|
*/
|
|
@NotBlank(message = "缺少部门编码")
|
|
private String deptCode;
|
|
|
|
/**
|
|
* 模糊设备码和UDI
|
|
*/
|
|
private String deviceCodeAndUdi;
|
|
|
|
/**
|
|
* 是否完成
|
|
*/
|
|
private Boolean finishFlag;
|
|
|
|
|
|
}
|