parent
6f965d2094
commit
cf1b5370fd
@ -0,0 +1,20 @@ |
||||
package com.bellmann.model.query; |
||||
|
||||
import com.bellmann.common.base.BasePageQuery; |
||||
import io.swagger.v3.oas.annotations.media.Schema; |
||||
import lombok.Data; |
||||
import lombok.EqualsAndHashCode; |
||||
|
||||
@EqualsAndHashCode(callSuper = true) |
||||
@Data |
||||
public class Tr069BindingPageQuery extends BasePageQuery { |
||||
|
||||
@Schema(description = "tr069数据模型ID") |
||||
private Long tr069VerId; |
||||
|
||||
private String devVendorName; |
||||
|
||||
private String devTypeName; |
||||
|
||||
private String devHardVer; |
||||
} |
@ -0,0 +1,20 @@ |
||||
package com.bellmann.model.vo; |
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema; |
||||
import lombok.Data; |
||||
|
||||
@Data |
||||
@Schema(description = "TR-069数据模型版本对应的设备类型及软件版本列表视图") |
||||
public class Tr069BindingVO { |
||||
|
||||
@Schema(description = "设备类型") |
||||
private String devType; |
||||
|
||||
@Schema(description = "设备类型软件版本名称") |
||||
private String devTypeSoftVer; |
||||
|
||||
@Schema(description = "审核标志") |
||||
private String devTypeVerStatus; |
||||
|
||||
private Long devTypeId; |
||||
} |
Loading…
Reference in new issue