| import com.baomidou.mybatisplus.annotation.TableId; |
| import com.baomidou.mybatisplus.annotation.TableName; |
| @TableName("bounty_submissions") |
| public class BountySubmission { |
| private String attachment; |
| public void setId(Long id) { |
| public Long getBountyId() { |
| public void setBountyId(Long bountyId) { |
| this.bountyId = bountyId; |
| public Long getUserId() { |
| public void setUserId(Long userId) { |
| public String getContent() { |
| public void setContent(String content) { |
| public String getAttachment() { |
| public void setAttachment(String attachment) { |
| this.attachment = attachment; |
| public Integer getStatus() { |
| public void setStatus(Integer status) { |
| public Date getCreateTime() { |
| public void setCreateTime(Date createTime) { |
| this.createTime = createTime; |