FeedbackOption.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package com.fdkankan.manage.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableLogic;
  6. import com.baomidou.mybatisplus.annotation.TableName;
  7. import java.io.Serializable;
  8. import java.util.Date;
  9. import lombok.Getter;
  10. import lombok.Setter;
  11. /**
  12. * <p>
  13. *
  14. * </p>
  15. *
  16. * @author
  17. * @since 2024-01-23
  18. */
  19. @Getter
  20. @Setter
  21. @TableName("t_feedback_option")
  22. public class FeedbackOption implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. @TableId(value = "id", type = IdType.AUTO)
  25. private Integer id;
  26. @TableField("name_cn")
  27. private String nameCn;
  28. @TableField("name_en")
  29. private String nameEn;
  30. /**
  31. * 0所在行业,1硬件产品,2软件产品
  32. */
  33. @TableField("type_id")
  34. private Integer typeId;
  35. @TableField("remark")
  36. private String remark;
  37. /**
  38. * 1系统预设,0自定义添加
  39. */
  40. @TableField("system")
  41. private Integer system;
  42. @TableField("rec_status")
  43. @TableLogic(value = "A",delval = "I")
  44. private String recStatus;
  45. @TableField("create_time")
  46. private Date createTime;
  47. @TableField("update_time")
  48. private Date updateTime;
  49. @TableField(exist = false)
  50. private String score;
  51. }