123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- package com.idiot.operationbackend.entity;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.baomidou.mybatisplus.annotation.TableId;
- import com.baomidou.mybatisplus.annotation.TableName;
- import java.util.List;
- /**
- * 关注回复
- * @author wang xiao
- * @date Created in 17:12 2020/9/21
- */
- @TableName("t_account_follow_reply")
- public class FollowReply {
- @TableId
- private String id;
- private String accountId;
- private String nikeName;
- private String headImage;
- private Integer pushType;
- private Boolean enable;
- private String materialIds;
- private String articlesIds;
- private String createTime;
- @TableField(exist = false)
- private List<Object> contents;
- @TableField(exist = false)
- private Boolean setUp;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getAccountId() {
- return accountId;
- }
- public void setAccountId(String accountId) {
- this.accountId = accountId;
- }
- public String getNikeName() {
- return nikeName;
- }
- public void setNikeName(String nikeName) {
- this.nikeName = nikeName;
- }
- public String getHeadImage() {
- return headImage;
- }
- public void setHeadImage(String headImage) {
- this.headImage = headImage;
- }
- public Integer getPushType() {
- return pushType;
- }
- public void setPushType(Integer pushType) {
- this.pushType = pushType;
- }
- public Boolean getEnable() {
- return enable;
- }
- public void setEnable(Boolean enable) {
- this.enable = enable;
- }
- public String getMaterialIds() {
- return materialIds;
- }
- public void setMaterialIds(String materialIds) {
- this.materialIds = materialIds;
- }
- public String getArticlesIds() {
- return articlesIds;
- }
- public void setArticlesIds(String articlesIds) {
- this.articlesIds = articlesIds;
- }
- public String getCreateTime() {
- return createTime;
- }
- public void setCreateTime(String createTime) {
- this.createTime = createTime;
- }
- public List<Object> getContents() {
- return contents;
- }
- public void setContents(List<Object> contents) {
- this.contents = contents;
- }
- public Boolean getSetUp() {
- return setUp;
- }
- public void setSetUp(Boolean setUp) {
- this.setUp = setUp;
- }
- }
|