MessageReceiveEntity.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package jnpf.message.entity;
  2. import com.baomidou.mybatisplus.annotation.TableField;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import jnpf.base.entity.SuperExtendEntity;
  5. import lombok.Data;
  6. import java.util.Date;
  7. /**
  8. * 消息接收
  9. *
  10. * @author JNPF开发平台组
  11. * @version V3.1.0
  12. * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
  13. * @date 2019年9月27日 上午9:18
  14. */
  15. @Data
  16. @TableName("base_message")
  17. public class MessageReceiveEntity extends SuperExtendEntity<String> {
  18. /**
  19. * 用户主键
  20. */
  21. @TableField("f_user_id")
  22. private String userId;
  23. /**
  24. * 是否阅读
  25. */
  26. @TableField("f_is_read")
  27. private Integer isRead;
  28. /**
  29. * 站内信息
  30. */
  31. @TableField("f_body_text")
  32. private String bodyText;
  33. /**
  34. * 标题
  35. */
  36. @TableField("f_title")
  37. private String title;
  38. /**
  39. * 类型(1-公告 2-流程 3-系统 4-日程)
  40. */
  41. @TableField("f_type")
  42. private Integer type;
  43. /**
  44. * 流程类型(1:审批 2:委托)
  45. */
  46. @TableField("f_flow_type")
  47. private Integer flowType;
  48. }