# -*- encoding : utf-8 -*- class Mindapp::Module include Mongoid::Document field :uid, :type => String field :code, :type => String field :name, :type => String field :role, :type => String field :seq, :type => Integer has_many :services, :class_name => "Mindapp::Service" end