25 lines
845 B
Ruby
25 lines
845 B
Ruby
module Vhcs
|
|
class HLIDCardsEgg < VhcsRecord
|
|
|
|
self.table_name = 'HLIDCardsEgg'
|
|
|
|
alias_attribute :facility, :Facility
|
|
alias_attribute :division, :Division
|
|
alias_attribute :full_name, :FullName
|
|
alias_attribute :ssn, :SSN
|
|
alias_attribute :medical_coverage, :MedicalCoverage
|
|
alias_attribute :medical_eff_date, :MedicalEffDate
|
|
alias_attribute :medical_group_num, :MedicalGroupNum
|
|
alias_attribute :dental_coverage, :DentalCoverage
|
|
alias_attribute :dental_eff_date, :DentalEffDate
|
|
alias_attribute :dental_group_num, :DentalGroupNum
|
|
alias_attribute :card_type, :CardType
|
|
alias_attribute :group_number, :GroupNumber
|
|
alias_attribute :pb_product_key, :PBProductKey
|
|
alias_attribute :id, :Id
|
|
alias_attribute :pl_plan_key, :PLPlanKey
|
|
alias_attribute :mb_member_key, :MBMemberKey
|
|
|
|
|
|
end
|
|
end |