|
# encoding: utf-8
|
|
class ApplicationFormItemContent
|
|
|
|
include Mongoid::Document
|
|
include Mongoid::Timestamps
|
|
|
|
field :content, localize: true
|
|
|
|
field :create_user_id
|
|
field :update_user_id
|
|
|
|
belongs_to :application_form_item
|
|
belongs_to :application_form_main
|
|
|
|
end
|