SmsbDeviceManufacturer.java 875 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package com.inspur.device.domain;
  2. import org.dromara.common.tenant.core.TenantEntity;
  3. import com.baomidou.mybatisplus.annotation.*;
  4. import lombok.Data;
  5. import lombok.EqualsAndHashCode;
  6. import java.io.Serial;
  7. /**
  8. * 厂商管理对象 smsb_device_manufacturer
  9. *
  10. * @author Hao Li
  11. * @date 2025-02-05
  12. */
  13. @Data
  14. @EqualsAndHashCode(callSuper = true)
  15. @TableName("smsb_device_manufacturer")
  16. public class SmsbDeviceManufacturer extends TenantEntity {
  17. @Serial
  18. private static final long serialVersionUID = 1L;
  19. /**
  20. * 主键ID
  21. */
  22. @TableId(value = "id")
  23. private Long id;
  24. /**
  25. * 厂商KEY
  26. */
  27. private String manufacturerKey;
  28. /**
  29. * 厂商名称
  30. */
  31. private String manufacturerName;
  32. /**
  33. * 设备类型
  34. */
  35. private Integer type;
  36. /**
  37. * 设备型号
  38. */
  39. private String deviceModel;
  40. }