1234567891011121314151617181920212223242526272829 |
- <?php
- return [
- 'Id' => '主键ID',
- 'User_id' => '用户ID',
- 'User.u_id' => '前端用户ID',
- 'User.nickname' => '用户昵称',
- 'Content' => '动态内容',
- 'Res_type' => '内容类型',
- 'Res_type 1' => '图片',
- 'Res_type 2' => '视频',
- 'Res_type 3' => '音频',
- 'Image' => '图片/视频/语音说明',
- 'Image_thumb' => '视频的图片缩略图',
- 'Commit' => '评论数',
- 'Likes' => '点赞数',
- 'Is_online' => '上架情况',
- 'Is_online -1' => '强制下架',
- 'Is_online 1' => '上架',
- 'Is_recommend' => '是否推荐',
- 'Is_recommend 0' => '否',
- 'Is_recommend 1' => '是',
- 'Status' => '状态',
- 'Status -1' => '审核拒绝',
- 'Status 0' => '待审核',
- 'Status 1' => '审核通过',
- 'Updatetime' => '更新时间',
- 'Createtime' => '创建时间'
- ];
|