| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package com.inspur.device.domain;
- import org.dromara.common.tenant.core.TenantEntity;
- import com.baomidou.mybatisplus.annotation.*;
- import lombok.Data;
- import lombok.EqualsAndHashCode;
- import java.io.Serial;
- /**
- * 厂商管理对象 smsb_device_manufacturer
- *
- * @author Hao Li
- * @date 2025-02-05
- */
- @Data
- @EqualsAndHashCode(callSuper = true)
- @TableName("smsb_device_manufacturer")
- public class SmsbDeviceManufacturer extends TenantEntity {
- @Serial
- private static final long serialVersionUID = 1L;
- /**
- * 主键ID
- */
- @TableId(value = "id")
- private Long id;
- /**
- * 厂商KEY
- */
- private String manufacturerKey;
- /**
- * 厂商名称
- */
- private String manufacturerName;
- /**
- * 设备类型
- */
- private Integer type;
- /**
- * 设备型号
- */
- private String deviceModel;
- }
|