package com.ruoyi.hezhi.domain; import com.fasterxml.jackson.annotation.JsonFormat; import com.ruoyi.common.annotation.Excel; import com.ruoyi.common.core.domain.BaseEntity; import lombok.Getter; import lombok.Setter; import lombok.ToString; import java.util.Date; /** * 继续教育分类对象 tb_continuing_education_class * * @author ruoyi * @date 2024-10-23 */ @Getter @Setter @ToString public class TbContinuingEducationClass extends BaseEntity { private static final long serialVersionUID = 1L; /** 继续教育分类主键ID */ private Long continuingEducationClassId; /** 父级ID */ @Excel(name = "父级ID") private Long pid; /** 层级 0 1 2 */ @Excel(name = "层级 0 1 2 ") private Integer level; /** 类型(0-全部) */ @Excel(name = "类型", readConverterExp = "0=-全部") private Integer type; /** 继续教育分类名称 */ @Excel(name = "继续教育分类名称") private String name; /** logo1 */ @Excel(name = "logo1") private String logoOne; /** logo2 */ @Excel(name = "logo2") private String logoTwo; /** 推荐(0-否,1-推荐) */ @Excel(name = "推荐", readConverterExp = "0=-否,1-推荐") private Integer isRecommend; /** 备注 */ @Excel(name = "备注") private String remarks; /** 排序 */ @Excel(name = "排序") private Integer sort; /** 状态(0-显示,1-隐藏) */ @Excel(name = "状态", readConverterExp = "0=-显示,1-隐藏") private Integer status; /** 发布时间 */ private Date publicationTime; /** 发布人 */ private String publisher; /** 删除时间 */ @JsonFormat(pattern = "yyyy-MM-dd") @Excel(name = "删除时间", width = 30, dateFormat = "yyyy-MM-dd") private Date deleteTime; /** 删除人 */ @Excel(name = "删除人") private String deleteBy; /** 删除标记(0-正常,1-删除) */ private Integer delFlag; }