messages.php 572 B

123456789101112131415161718
  1. <?php
  2. return [
  3. 'Id' => '主键ID',
  4. 'Message_type' => '消息类型',
  5. 'Message_type 0' => '系统消息',
  6. 'Message_type 1' => '聊天消息',
  7. 'From_user_id' => '发消息用户ID',
  8. 'To_user_id' => '收消息用户ID',
  9. 'Title' => '消息标题',
  10. 'Content' => '消息内容',
  11. 'Extra_json' => '扩展数据',
  12. 'Is_read' => '是否已读',
  13. 'Is_read 0' => '未读',
  14. 'Is_read 1' => '已读',
  15. 'Createtime' => '创建时间',
  16. 'Updatetime' => '更新时间'
  17. ];