linjunpop/riif

View on GitHub
lib/riif/dsl/emp.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Riif::DSL
  class Emp < Base
    HEADER_COLUMNS = [
      :name,
      :init,
      :addr1,
      :addr2,
      :addr3,
      :addr4,
      :addr5,
      :ssno,
      :phone1,
      :phone2,
      :notepad,
      :firstname,
      :midinit,
      :lastname,
      :salutation,
      :custfld1,
      :custfld2,
      :custfld3,
      :custfld4,
      :custfld5,
      :custfld6,
      :custfld7,
      :note
    ]
    START_COLUMN = 'EMP'
    END_COLUMN = ''
  end
end