115 lines
2.3 KiB
Java
115 lines
2.3 KiB
Java
package com.ruoyi.system.domain;
|
|
|
|
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;
|
|
|
|
/**
|
|
* 积分商品分类对象 integral_cate
|
|
*
|
|
* @author ruoyi
|
|
* @date 2025-05-13
|
|
*/
|
|
public class IntegralCate extends BaseEntity
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** $column.columnComment */
|
|
private Long id;
|
|
|
|
/** 名称 */
|
|
@Excel(name = "名称")
|
|
private String title;
|
|
|
|
/** 排序 */
|
|
@Excel(name = "排序")
|
|
private Long sort;
|
|
|
|
/** 状态 */
|
|
@Excel(name = "状态")
|
|
private Long status;
|
|
|
|
/** $column.columnComment */
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
private Date createdAt;
|
|
|
|
/** $column.columnComment */
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
private Date updatedAt;
|
|
|
|
public void setId(Long id)
|
|
{
|
|
this.id = id;
|
|
}
|
|
|
|
public Long getId()
|
|
{
|
|
return id;
|
|
}
|
|
|
|
public void setTitle(String title)
|
|
{
|
|
this.title = title;
|
|
}
|
|
|
|
public String getTitle()
|
|
{
|
|
return title;
|
|
}
|
|
|
|
public void setSort(Long sort)
|
|
{
|
|
this.sort = sort;
|
|
}
|
|
|
|
public Long getSort()
|
|
{
|
|
return sort;
|
|
}
|
|
|
|
public void setStatus(Long status)
|
|
{
|
|
this.status = status;
|
|
}
|
|
|
|
public Long getStatus()
|
|
{
|
|
return status;
|
|
}
|
|
|
|
public void setCreatedAt(Date createdAt)
|
|
{
|
|
this.createdAt = createdAt;
|
|
}
|
|
|
|
public Date getCreatedAt()
|
|
{
|
|
return createdAt;
|
|
}
|
|
|
|
public void setUpdatedAt(Date updatedAt)
|
|
{
|
|
this.updatedAt = updatedAt;
|
|
}
|
|
|
|
public Date getUpdatedAt()
|
|
{
|
|
return updatedAt;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
.append("id", getId())
|
|
.append("title", getTitle())
|
|
.append("sort", getSort())
|
|
.append("status", getStatus())
|
|
.append("createdAt", getCreatedAt())
|
|
.append("updatedAt", getUpdatedAt())
|
|
.toString();
|
|
}
|
|
}
|