package com.ruoyi.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
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;
|
|
import java.util.Date;
|
|
/**
|
* 【请填写功能名称】对象 archive_category
|
*
|
* @author ruoyi
|
* @date 2025-07-26
|
*/
|
public class ArchiveCategory extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** $column.columnComment */
|
@TableId(type = IdType.AUTO)
|
|
private Long id;
|
|
/** $column.columnComment */
|
@Excel(name = "编号")
|
private String numb;
|
|
/** $column.columnComment */
|
@Excel(name = "名称")
|
private String nname;
|
|
|
private Date ctime;
|
|
public Date getCtime() {
|
return ctime;
|
}
|
|
public void setCtime(Date ctime) {
|
this.ctime = ctime;
|
}
|
|
public void setId(Long id)
|
{
|
this.id = id;
|
}
|
|
public Long getId()
|
{
|
return id;
|
}
|
|
public void setNumb(String numb)
|
{
|
this.numb = numb;
|
}
|
|
public String getNumb()
|
{
|
return numb;
|
}
|
|
public void setNname(String nname)
|
{
|
this.nname = nname;
|
}
|
|
public String getNname()
|
{
|
return nname;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("numb", getNumb())
|
.append("nname", getNname())
|
.toString();
|
}
|
}
|