| package bounty.domain; |
| |
| import com.baomidou.mybatisplus.annotation.TableId; |
| import com.baomidou.mybatisplus.annotation.TableName; |
| import lombok.Data; |
| |
| import java.util.Date; |
| |
| // 悬赏提交实体类 |
| @Data |
| @TableName("bounty_submissions") |
| public class BountySubmission { |
| @TableId |
| private Long id; |
| private Long bountyId; |
| private Long userId; |
| private String content; |
| private String attachment; |
| private Integer status; |
| private Date createTime; |
| |
| public Long getId() { |
| return id; |
| } |
| |
| public void setId(Long id) { |
| this.id = id; |
| } |
| |
| public Long getBountyId() { |
| return bountyId; |
| } |
| |
| public void setBountyId(Long bountyId) { |
| this.bountyId = bountyId; |
| } |
| |
| public Long getUserId() { |
| return userId; |
| } |
| |
| public void setUserId(Long userId) { |
| this.userId = userId; |
| } |
| |
| public String getContent() { |
| return content; |
| } |
| |
| public void setContent(String content) { |
| this.content = content; |
| } |
| |
| public String getAttachment() { |
| return attachment; |
| } |
| |
| public void setAttachment(String attachment) { |
| this.attachment = attachment; |
| } |
| |
| public Integer getStatus() { |
| return status; |
| } |
| |
| public void setStatus(Integer status) { |
| this.status = status; |
| } |
| |
| public Date getCreateTime() { |
| return createTime; |
| } |
| |
| public void setCreateTime(Date createTime) { |
| this.createTime = createTime; |
| } |
| } |