All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.rexsheng.springboot.faster.system.notice.infrastructure.NoticeDO Maven / Gradle / Ivy

The newest version!
package com.github.rexsheng.springboot.faster.system.notice.infrastructure;

import com.github.rexsheng.springboot.faster.system.entity.Notice;

import java.time.LocalDateTime;

public class NoticeDO extends Notice {

    private LocalDateTime readTime;

    private Long readUser;

    private Boolean readState;

    private String targetMessage;

    private Long targetCreateUser;

    private LocalDateTime targetCreateTime;

    private Long targetId;

    private Integer rowType;

    public LocalDateTime getReadTime() {
        return readTime;
    }

    public void setReadTime(LocalDateTime readTime) {
        this.readTime = readTime;
    }

    public Long getReadUser() {
        return readUser;
    }

    public void setReadUser(Long readUser) {
        this.readUser = readUser;
    }

    public Boolean getReadState() {
        return readState;
    }

    public void setReadState(Boolean readState) {
        this.readState = readState;
    }

    public String getTargetMessage() {
        return targetMessage;
    }

    public void setTargetMessage(String targetMessage) {
        this.targetMessage = targetMessage;
    }

    public Long getTargetCreateUser() {
        return targetCreateUser;
    }

    public void setTargetCreateUser(Long targetCreateUser) {
        this.targetCreateUser = targetCreateUser;
    }

    public LocalDateTime getTargetCreateTime() {
        return targetCreateTime;
    }

    public void setTargetCreateTime(LocalDateTime targetCreateTime) {
        this.targetCreateTime = targetCreateTime;
    }

    public Long getTargetId() {
        return targetId;
    }

    public void setTargetId(Long targetId) {
        this.targetId = targetId;
    }

    public Integer getRowType() {
        return rowType;
    }

    public void setRowType(Integer rowType) {
        this.rowType = rowType;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy