package com.ycl.entity; import com.baomidou.mybatisplus.extension.activerecord.Model; import java.io.Serializable; /** * 频道栏目中间表(NewsChannelColumn)表实体类 * * @author makejava * @since 2022-11-17 11:38:27 */ @SuppressWarnings("serial") public class NewsChannelColumn extends Model { private Integer id; //频道id private Integer channelId; //栏目id private Integer columnId; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Integer getChannelId() { return channelId; } public void setChannelId(Integer channelId) { this.channelId = channelId; } public Integer getColumnId() { return columnId; } public void setColumnId(Integer columnId) { this.columnId = columnId; } /** * 获取主键值 * * @return 主键值 */ @Override protected Serializable pkVal() { return this.id; } }