IsSystemAttribute.java 956 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package com.ktg.iscs.domain;
  2. import lombok.Data;
  3. import lombok.EqualsAndHashCode;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import com.baomidou.mybatisplus.annotation.TableId;
  6. import com.baomidou.mybatisplus.annotation.IdType;
  7. import com.ktg.common.annotation.Excel;
  8. import com.ktg.common.core.domain.model.BaseBean;
  9. /**
  10. * 基础数据对象 is_system_attribute
  11. *
  12. * @author cgj
  13. * @date 2025-03-11
  14. */
  15. @EqualsAndHashCode(callSuper = true)
  16. @Data
  17. public class IsSystemAttribute extends BaseBean
  18. {
  19. private static final long serialVersionUID = 1L;
  20. @ApiModelProperty(value = "ID")
  21. @TableId(type = IdType.AUTO)
  22. private Long id;
  23. @ApiModelProperty(value = "属性")
  24. @Excel(name = "属性")
  25. private String attribute;
  26. @ApiModelProperty(value = "数值")
  27. @Excel(name = "数值")
  28. private String value;
  29. @ApiModelProperty(value = "删除标志(0代表存在 2代表删除)")
  30. private String delFlag;
  31. }