21 lines
865 B
JavaScript
21 lines
865 B
JavaScript
module.exports = {
|
|
doc: "消息表",
|
|
api: true,//是否需要生成api接口
|
|
model: {
|
|
uid: {type: "STRING", comment: '发送人用户id'},
|
|
name: {type: "STRING", comment: '发送人名称'},
|
|
avatar: {type: "STRING", comment: '发送人头像'},
|
|
to_uid: {type: "STRING", comment: '接收人用户id'},
|
|
to_name: {type: "STRING", comment: '接收人名称'},
|
|
to_avatar: {type: "STRING", comment: '接收人头像'},
|
|
status: {type: "STRING", comment: '状态:已读/未读:y/n'},
|
|
type: {type: "STRING", comment: '消息类型:file / image / text / event'},
|
|
sendTime: {type: "STRING", comment: '消息发送时间'},
|
|
content: {type: "STRING", comment: '消息内容,如果type=file,此属性表示文件的URL地址'},
|
|
fileSize: {type: "STRING", comment: '文件大小'},
|
|
fileName: {type: "STRING", comment: '文件名称'},
|
|
},
|
|
}
|
|
|
|
|