import { usqlite } from '@/uni_modules/onemue-USQLite/js_sdk/usqlite.js' const contactModel = usqlite.model('contacts', { targetId: { type: String, primaryKey: true, unique: true }, name: String, hash: { type: String, unique: true }, type: { type: Number, default: 0 }, portraitUrl: String, localAvatar: String }) export default { contactModel }