Files
baclight/app/models/vhcs/pb_company_plans.rb
T
Jason Jordan 4fac3b1036
CI / scan_ruby (push) Failing after 10m41s
CI / lint (push) Failing after 7m31s
CI / test (push) Failing after 8m29s
Docker / build-and-test-image (push) Failing after 11m32s
Employers working - onboarding to card print
2026-01-15 11:37:50 -05:00

23 lines
517 B
Ruby

module Vhcs
class PbCompanyPlans < VhcsRecord
self.table_name = 'PBCompanyPlans'
alias_attribute :pb_company_plan_key, :PBCompanyPlanKey
alias_attribute :company_pb_entity_key, :CompanyPBEntityKey
alias_attribute :pl_plan_key, :PLPlanKey
def attributes
rails_like = {
pb_company_plan_key: self.pb_company_plan_key,
company_pb_entity_key: self.company_pb_entity_key,
pl_plan_key: self.pl_plan_key,
}
super.merge(rails_like)
end
end
end