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