16 lines
386 B
Python
16 lines
386 B
Python
# -*- coding: utf-8 -*-
|
|
import logging
|
|
from odoo import models, fields, api
|
|
from odoo.exceptions import UserError
|
|
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
|
|
class JikimoMessageBussinessNode(models.Model):
|
|
_name = "jikimo.message.bussiness.node"
|
|
_description = '发送消息业务节点'
|
|
|
|
name = fields.Char(string="节点名称")
|
|
model = fields.Char(string="模型")
|
|
|
|
|