package com.smartor.domain; 
 | 
  
 | 
import java.math.BigDecimal; 
 | 
import java.util.Date; 
 | 
import com.fasterxml.jackson.annotation.JsonFormat; 
 | 
import org.apache.commons.lang3.builder.ToStringBuilder; 
 | 
import org.apache.commons.lang3.builder.ToStringStyle; 
 | 
import com.ruoyi.common.annotation.Excel; 
 | 
import com.ruoyi.common.core.domain.BaseEntity; 
 | 
  
 | 
/** 
 | 
 * 宣教库对象 he_locallibrary 
 | 
 *  
 | 
 * @author smartor 
 | 
 * @date 2023-03-04 
 | 
 */ 
 | 
public class HeLocallibrary extends BaseEntity 
 | 
{ 
 | 
    private static final long serialVersionUID = 1L; 
 | 
  
 | 
    /**  自增ID  */ 
 | 
    private Long id; 
 | 
  
 | 
    /**  宣教分类  */ 
 | 
    @Excel(name = " 宣教分类 ") 
 | 
    private Long preachcategoryid; 
 | 
  
 | 
    /**  宣教名称  */ 
 | 
    @Excel(name = " 宣教名称 ") 
 | 
    private String preachname; 
 | 
  
 | 
    /**  版本  */ 
 | 
    @Excel(name = " 版本 ") 
 | 
    private BigDecimal version; 
 | 
  
 | 
    /**  宣教形式  */ 
 | 
    @Excel(name = " 宣教形式 ") 
 | 
    private Long preachform; 
 | 
  
 | 
    /**  宣教描述  */ 
 | 
    @Excel(name = " 宣教描述 ") 
 | 
    private String preachdescription; 
 | 
  
 | 
    /**  宣教内容  */ 
 | 
    @Excel(name = " 宣教内容 ") 
 | 
    private String preachcontent; 
 | 
  
 | 
    /**  模板ID  */ 
 | 
    @Excel(name = " 模板ID ") 
 | 
    private Long templateid; 
 | 
  
 | 
    /**  宣教代码  */ 
 | 
    @Excel(name = " 宣教代码 ") 
 | 
    private String preachcode; 
 | 
  
 | 
    /**  中心库ID  */ 
 | 
    @Excel(name = " 中心库ID ") 
 | 
    private Long centerlibraryid; 
 | 
  
 | 
    /**  是否启用  */ 
 | 
    @Excel(name = " 是否启用 ") 
 | 
    private Long isenable; 
 | 
  
 | 
    /**  机构ID  */ 
 | 
    @Excel(name = " 机构ID ") 
 | 
    private String orgid; 
 | 
  
 | 
    /**  删除标记  */ 
 | 
    private String delFlag; 
 | 
  
 | 
    /**  上传标记  */ 
 | 
    @Excel(name = " 上传标记 ") 
 | 
    private Long isupload; 
 | 
  
 | 
    /**  上传时间  */ 
 | 
    @JsonFormat(pattern = "yyyy-MM-dd") 
 | 
    @Excel(name = " 上传时间 ", width = 30, dateFormat = "yyyy-MM-dd") 
 | 
    private Date uploadTime; 
 | 
  
 | 
    /**  宣教分类  */ 
 | 
    @Excel(name = " 宣教分类 ") 
 | 
    private String classification; 
 | 
  
 | 
    /**  是否本地  */ 
 | 
    @Excel(name = " 是否本地 ") 
 | 
    private Long islocal; 
 | 
  
 | 
    /**  中心库代码  */ 
 | 
    @Excel(name = " 中心库代码 ") 
 | 
    private String centerlibrarycode; 
 | 
  
 | 
    public void setId(Long id)  
 | 
    { 
 | 
        this.id = id; 
 | 
    } 
 | 
  
 | 
    public Long getId()  
 | 
    { 
 | 
        return id; 
 | 
    } 
 | 
    public void setPreachcategoryid(Long preachcategoryid)  
 | 
    { 
 | 
        this.preachcategoryid = preachcategoryid; 
 | 
    } 
 | 
  
 | 
    public Long getPreachcategoryid()  
 | 
    { 
 | 
        return preachcategoryid; 
 | 
    } 
 | 
    public void setPreachname(String preachname)  
 | 
    { 
 | 
        this.preachname = preachname; 
 | 
    } 
 | 
  
 | 
    public String getPreachname()  
 | 
    { 
 | 
        return preachname; 
 | 
    } 
 | 
    public void setVersion(BigDecimal version)  
 | 
    { 
 | 
        this.version = version; 
 | 
    } 
 | 
  
 | 
    public BigDecimal getVersion()  
 | 
    { 
 | 
        return version; 
 | 
    } 
 | 
    public void setPreachform(Long preachform)  
 | 
    { 
 | 
        this.preachform = preachform; 
 | 
    } 
 | 
  
 | 
    public Long getPreachform()  
 | 
    { 
 | 
        return preachform; 
 | 
    } 
 | 
    public void setPreachdescription(String preachdescription)  
 | 
    { 
 | 
        this.preachdescription = preachdescription; 
 | 
    } 
 | 
  
 | 
    public String getPreachdescription()  
 | 
    { 
 | 
        return preachdescription; 
 | 
    } 
 | 
    public void setPreachcontent(String preachcontent)  
 | 
    { 
 | 
        this.preachcontent = preachcontent; 
 | 
    } 
 | 
  
 | 
    public String getPreachcontent()  
 | 
    { 
 | 
        return preachcontent; 
 | 
    } 
 | 
    public void setTemplateid(Long templateid)  
 | 
    { 
 | 
        this.templateid = templateid; 
 | 
    } 
 | 
  
 | 
    public Long getTemplateid()  
 | 
    { 
 | 
        return templateid; 
 | 
    } 
 | 
    public void setPreachcode(String preachcode)  
 | 
    { 
 | 
        this.preachcode = preachcode; 
 | 
    } 
 | 
  
 | 
    public String getPreachcode()  
 | 
    { 
 | 
        return preachcode; 
 | 
    } 
 | 
    public void setCenterlibraryid(Long centerlibraryid)  
 | 
    { 
 | 
        this.centerlibraryid = centerlibraryid; 
 | 
    } 
 | 
  
 | 
    public Long getCenterlibraryid()  
 | 
    { 
 | 
        return centerlibraryid; 
 | 
    } 
 | 
    public void setIsenable(Long isenable)  
 | 
    { 
 | 
        this.isenable = isenable; 
 | 
    } 
 | 
  
 | 
    public Long getIsenable()  
 | 
    { 
 | 
        return isenable; 
 | 
    } 
 | 
    public void setOrgid(String orgid)  
 | 
    { 
 | 
        this.orgid = orgid; 
 | 
    } 
 | 
  
 | 
    public String getOrgid()  
 | 
    { 
 | 
        return orgid; 
 | 
    } 
 | 
    public void setDelFlag(String delFlag)  
 | 
    { 
 | 
        this.delFlag = delFlag; 
 | 
    } 
 | 
  
 | 
    public String getDelFlag()  
 | 
    { 
 | 
        return delFlag; 
 | 
    } 
 | 
    public void setIsupload(Long isupload)  
 | 
    { 
 | 
        this.isupload = isupload; 
 | 
    } 
 | 
  
 | 
    public Long getIsupload()  
 | 
    { 
 | 
        return isupload; 
 | 
    } 
 | 
    public void setUploadTime(Date uploadTime)  
 | 
    { 
 | 
        this.uploadTime = uploadTime; 
 | 
    } 
 | 
  
 | 
    public Date getUploadTime()  
 | 
    { 
 | 
        return uploadTime; 
 | 
    } 
 | 
    public void setClassification(String classification)  
 | 
    { 
 | 
        this.classification = classification; 
 | 
    } 
 | 
  
 | 
    public String getClassification()  
 | 
    { 
 | 
        return classification; 
 | 
    } 
 | 
    public void setIslocal(Long islocal)  
 | 
    { 
 | 
        this.islocal = islocal; 
 | 
    } 
 | 
  
 | 
    public Long getIslocal()  
 | 
    { 
 | 
        return islocal; 
 | 
    } 
 | 
    public void setCenterlibrarycode(String centerlibrarycode)  
 | 
    { 
 | 
        this.centerlibrarycode = centerlibrarycode; 
 | 
    } 
 | 
  
 | 
    public String getCenterlibrarycode()  
 | 
    { 
 | 
        return centerlibrarycode; 
 | 
    } 
 | 
  
 | 
    @Override 
 | 
    public String toString() { 
 | 
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) 
 | 
            .append("id", getId()) 
 | 
            .append("preachcategoryid", getPreachcategoryid()) 
 | 
            .append("preachname", getPreachname()) 
 | 
            .append("version", getVersion()) 
 | 
            .append("preachform", getPreachform()) 
 | 
            .append("preachdescription", getPreachdescription()) 
 | 
            .append("preachcontent", getPreachcontent()) 
 | 
            .append("templateid", getTemplateid()) 
 | 
            .append("preachcode", getPreachcode()) 
 | 
            .append("centerlibraryid", getCenterlibraryid()) 
 | 
            .append("isenable", getIsenable()) 
 | 
            .append("orgid", getOrgid()) 
 | 
            .append("updateBy", getUpdateBy()) 
 | 
            .append("updateTime", getUpdateTime()) 
 | 
            .append("delFlag", getDelFlag()) 
 | 
            .append("createBy", getCreateBy()) 
 | 
            .append("createTime", getCreateTime()) 
 | 
            .append("isupload", getIsupload()) 
 | 
            .append("uploadTime", getUploadTime()) 
 | 
            .append("classification", getClassification()) 
 | 
            .append("islocal", getIslocal()) 
 | 
            .append("centerlibrarycode", getCenterlibrarycode()) 
 | 
            .toString(); 
 | 
    } 
 | 
} 
 |