16 lines
438 B
Ruby
16 lines
438 B
Ruby
|
|
module Baclight
|
||
|
|
class Provider < BaclightRecord
|
||
|
|
|
||
|
|
self.table_name = 'Providers'
|
||
|
|
|
||
|
|
alias_attribute :id, :id
|
||
|
|
alias_attribute :name, :name
|
||
|
|
alias_attribute :pb_entity_key, :pb_entity_key
|
||
|
|
alias_attribute :tax_id, :tax_id
|
||
|
|
alias_attribute :family_id, :family_id
|
||
|
|
alias_attribute :provider_group_id, :provider_group_id
|
||
|
|
alias_attribute :created_at, :created_at
|
||
|
|
alias_attribute :updated_at, :updated_at
|
||
|
|
|
||
|
|
end
|
||
|
|
end
|