| | |
| | | `state` int(11) DEFAULT '0' COMMENT '状态 0-未开启 1-已开启', |
| | | `hot_state` int(11) DEFAULT '0' COMMENT '是否推荐到首页 0-不推荐 1-推荐', |
| | | `order_cnt` int(11) DEFAULT '0' COMMENT '排序', |
| | | `is_normal` int(11) DEFAULT '1' COMMENT '1:普通社区内容 2:视频号内容', |
| | | `finder_user_name` varchar(128) DEFAULT NULL COMMENT '视频号 id,以“sph”开头的id,可在视频号助手获取', |
| | | `feed_id` varchar(512) DEFAULT NULL COMMENT '视频 feedId', |
| | | */ |
| | | private Long memberId; |
| | | @TableField(exist = false) |
| | |
| | | private Integer state; |
| | | private Integer hotState; |
| | | private Integer orderCnt; |
| | | //1:普通社区内容 2:视频号内容 |
| | | private Integer isNormal; |
| | | private String finderUserName; |
| | | private String feedId; |
| | | } |