module EducodeSales class SalesTargetLog < ApplicationRecord belongs_to :staff belongs_to :reviewer, class_name: 'Staff', optional: true belongs_to :school_tag enum target_clazz: { '中标': 18, '回款': 2, '商机': 7 } enum state: %w[待审核 已通过 已驳回] end end