82 lines
1.7 KiB
82 lines
1.7 KiB
package com.zc.business.domain;
|
|
|
|
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;
|
|
|
|
/**
|
|
* 节假日 基础数据
|
|
对象 dc_holidays
|
|
*
|
|
* @author ruoyi
|
|
* @date 2024-06-18
|
|
*/
|
|
public class DcHolidays extends BaseEntity
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** 节假日名称 */
|
|
@Excel(name = "节假日名称")
|
|
private String name;
|
|
|
|
/** 节假日假期 */
|
|
@Excel(name = "节假日假期 ")
|
|
private String vacation;
|
|
|
|
/** 日期 年份 */
|
|
@Excel(name = "日期 年份")
|
|
private Integer date;
|
|
|
|
/** $column.columnComment */
|
|
private Long id;
|
|
|
|
public void setName(String name)
|
|
{
|
|
this.name = name;
|
|
}
|
|
|
|
public String getName()
|
|
{
|
|
return name;
|
|
}
|
|
public void setVacation(String vacation)
|
|
{
|
|
this.vacation = vacation;
|
|
}
|
|
|
|
public String getVacation()
|
|
{
|
|
return vacation;
|
|
}
|
|
public void setDate(Integer date)
|
|
{
|
|
this.date = date;
|
|
}
|
|
|
|
public Integer getDate()
|
|
{
|
|
return date;
|
|
}
|
|
public void setId(Long id)
|
|
{
|
|
this.id = id;
|
|
}
|
|
|
|
public Long getId()
|
|
{
|
|
return id;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
.append("name", getName())
|
|
.append("vacation", getVacation())
|
|
.append("date", getDate())
|
|
.append("createTime", getCreateTime())
|
|
.append("updateTime", getUpdateTime())
|
|
.append("id", getId())
|
|
.toString();
|
|
}
|
|
}
|
|
|