Files
bamboo/app/message/model/Message.js
T
2022-08-02 19:21:03 +08:00

22 lines
996 B
JavaScript

module.exports = {
doc : "消息表",
api : true,//是否需要生成api接口
model: {
oid : {type: "INTEGER", comment: '发送人用户机构id'},
uid : {type: "INTEGER", 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", fieldNameCus: '消息内容', comment: '消息内容,如果type=file,此属性表示文件的URL地址'},
fileSize : {type: "STRING", comment: '文件大小'},
fileName : {type: "STRING", comment: '文件名称'},
},
}