TblParameter.java 654 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package com.hfln.device.infrastructure.po;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import lombok.Data;
  4. import lombok.EqualsAndHashCode;
  5. /**
  6. * 参数配置表
  7. */
  8. @Data
  9. @EqualsAndHashCode(callSuper = true)
  10. @TableName("tbl_parameter")
  11. public class TblParameter extends BasePO {
  12. /**
  13. * 主键ID
  14. */
  15. @TableId(type = IdType.ASSIGN_ID)
  16. private Long parameterId;
  17. /**
  18. * 参数编码
  19. */
  20. private String paramCode;
  21. /**
  22. * 参数名称
  23. */
  24. private String paramName;
  25. /**
  26. * 参数值
  27. */
  28. private String paramValue;
  29. /**
  30. * 参数描述
  31. */
  32. private String paramDesc;
  33. }