1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package com.cloudcross.ssp.model;
- import java.util.Date;
- public class Message {
- //消息Id
- private Long id;
- //消息内容
- private String content;
- //发送时间
- private Date sendTime;
- //账户id
- private Integer accountId;
- //是否已读
- private Boolean read;
- //类型(1-审核,2-提现,3-其他)
- private Integer type;
-
- public Integer getType() {
- return type;
- }
- public void setType(Integer type) {
- this.type = type;
- }
- public Long getId() {
- return id;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
-
- public Date getSendTime() {
- return sendTime;
- }
- public void setSendTime(Date sendTime) {
- this.sendTime = sendTime;
- }
- public Integer getAccountId() {
- return accountId;
- }
- public void setAccountId(Integer accountId) {
- this.accountId = accountId;
- }
- public Boolean getRead() {
- return read;
- }
- public void setRead(Boolean read) {
- this.read = read;
- }
-
-
-
- }
|