You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
955 B

  1. package com.ruoyi.model.domain;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import org.apache.commons.lang3.builder.ToStringBuilder;
  4. import org.apache.commons.lang3.builder.ToStringStyle;
  5. import com.ruoyi.common.annotation.Excel;
  6. import com.ruoyi.common.core.domain.BaseEntity;
  7. /**
  8. * 用户评价对象 applet_comment
  9. *
  10. * @author ruoyi
  11. * @date 2025-03-28
  12. */
  13. public class AppletComment extends BaseEntity
  14. {
  15. private static final long serialVersionUID = 1L;
  16. /** 唯一标识 */
  17. private Long id;
  18. /** 评价内容 */
  19. @Excel(name = "评价内容")
  20. private String comment;
  21. /** 满意度 */
  22. @Excel(name = "满意度")
  23. private Long satisfaction;
  24. /** 关联评价人员ID */
  25. @Excel(name = "关联评价人员ID")
  26. private Long user1Id;
  27. /** 关联服务人员ID */
  28. @Excel(name = "关联服务人员ID")
  29. private Long user2Id;
  30. /** 删除标识 */
  31. private Integer delFlag;
  32. }