123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- package com.ruoyi.project.system.domain;
- import com.ruoyi.framework.aspectj.lang.annotation.Excel;
- import com.ruoyi.framework.web.domain.BaseEntity;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import java.util.Date;
- /**
- * 用户通知关联对象 sys_user_notice
- *
- * @author ruoyi
- * @date 2021-10-15
- */
- public class SysUserNotice extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** 用户编号 */
- @Excel(name = "用户编号")
- private Long userId;
- /** 公告编号 */
- @Excel(name = "公告编号")
- private Long noticeId;
- /** 创建时间 */
- private Date createTime;
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- public void setUserId(Long userId)
- {
- this.userId = userId;
- }
- public Long getUserId()
- {
- return userId;
- }
- public void setNoticeId(Long noticeId)
- {
- this.noticeId = noticeId;
- }
- public Long getNoticeId()
- {
- return noticeId;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("userId", getUserId())
- .append("noticeId", getNoticeId())
- .append("createTime", getCreateTime())
- .toString();
- }
- }
|