24 lines
440 B
JavaScript
24 lines
440 B
JavaScript
'use strict'
|
|
import mongoose from 'mongoose'
|
|
|
|
/**
|
|
* 游戏跳转信息(推广系统专用)
|
|
*/
|
|
const GameJump = new mongoose.Schema(
|
|
{
|
|
|
|
game_id: {type: Number},
|
|
platform_id: {type: Number},
|
|
t_game_name: {type: String},
|
|
t_appid: {type: String},
|
|
ad_uid: {type: String},
|
|
link: {type: String},
|
|
},
|
|
{
|
|
collection: 'game_jump',
|
|
timestamps: true,
|
|
}
|
|
)
|
|
|
|
export default mongoose.model('GameJump', GameJump)
|