temp_product_import.js 261 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 /** * * @author: chenfeng<feng.chen@yoho.cn> * @date: 16/11/01 */ 'use strict'; const Model = require('./model'); class TempProductImport extends Model { constructor() { super('temp_product_import'); } } module.exports = TempProductImport;