13 lines
422 B
Python
13 lines
422 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import models, fields, api
|
|
|
|
|
|
class TxActivityHotspotInformation(models.Model):
|
|
_name = 'tx.activity.hotspot.information'
|
|
_inherit = ['mail.thread', 'mail.activity.mixin']
|
|
_description = '活动热点资讯'
|
|
|
|
img = fields.Image(string="头像", tracking=True)
|
|
name = fields.Char(string='名称', tracking=True)
|
|
content = fields.Html(string="内容", tracking=True) |