fangyuan
2022-11-17 04656ebd6d0000dd4653eaf000bf73cb2bd4f521
ycl-platform/src/main/java/com/ycl/entity/NewsColumnInformation.java
@@ -1,57 +1,57 @@
package com.ycl.entity;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import java.io.Serializable;
/**
 * 栏目频道中间表(NewsColumnInformation)表实体类
 *
 * @author makejava
 * @since 2022-11-16 16:52:30
 */
@SuppressWarnings("serial")
public class NewsColumnInformation extends Model<NewsColumnInformation> {
    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;
    }
    }
package com.ycl.entity;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import java.io.Serializable;
/**
 * 栏目咨询中间表(NewsColumnInformation)表实体类
 *
 * @author makejava
 * @since 2022-11-17 11:12:41
 */
@SuppressWarnings("serial")
public class NewsColumnInformation extends Model<NewsColumnInformation> {
    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;
    }
    }