import { Article } from './article' import Model from '../lib/model' export class News extends Model { static async create (news: Article[]): Promise { await Article.init({ wechat: this.wechat }) return Article.bulkCreate(news) } static findAndCountAll () { } }