71 lines
1.5 KiB
71 lines
1.5 KiB
1 year ago
|
package com.zc.business.domain;
|
||
|
|
||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||
|
import io.swagger.annotations.ApiModel;
|
||
|
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;
|
||
|
|
||
|
/**
|
||
|
* 情报板敏感字管理对象 dc_info_board_vocabulary
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
* @date 2024-01-05
|
||
|
*/
|
||
|
@ApiModel("情报板敏感字管理对象")
|
||
|
public class DcInfoBoardVocabulary
|
||
|
{
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/** id */
|
||
|
private Long id;
|
||
|
|
||
|
/** 文本 */
|
||
|
@Excel(name = "文本")
|
||
|
private String word;
|
||
|
|
||
|
/** 创建时间 */
|
||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8")
|
||
|
@Excel(name = "创建时间")
|
||
|
private Date createTime;
|
||
|
|
||
|
public void setId(Long id)
|
||
|
{
|
||
|
this.id = id;
|
||
|
}
|
||
|
|
||
|
public Long getId()
|
||
|
{
|
||
|
return id;
|
||
|
}
|
||
|
public void setWord(String word)
|
||
|
{
|
||
|
this.word = word;
|
||
|
}
|
||
|
|
||
|
public String getWord()
|
||
|
{
|
||
|
return word;
|
||
|
}
|
||
|
|
||
|
public Date getCreateTime() {
|
||
|
return createTime;
|
||
|
}
|
||
|
|
||
|
public void setCreateTime(Date createTime) {
|
||
|
this.createTime = createTime;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String toString() {
|
||
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||
|
.append("id", getId())
|
||
|
.append("word", getWord())
|
||
|
.append("createTime", getCreateTime())
|
||
|
.toString();
|
||
|
}
|
||
|
}
|