37 lines
760 B
YAML
37 lines
760 B
YAML
program_id: KYU05DED
|
|
db_type: SQLite
|
|
db_name: SALARY.db
|
|
|
|
db_tables:
|
|
- name: TAX_TABLE
|
|
columns:
|
|
- name: TAX_FROM
|
|
type: DECIMAL(9,0)
|
|
primary_key: true
|
|
- name: TAX_TO
|
|
type: DECIMAL(9,0)
|
|
primary_key: true
|
|
- name: TAX_RATE
|
|
type: DECIMAL(5,4)
|
|
- name: DEDUCTION
|
|
type: DECIMAL(9,0)
|
|
|
|
- name: INSURANCE_TABLE
|
|
columns:
|
|
- name: INS_INCOME_FROM
|
|
type: DECIMAL(9,0)
|
|
primary_key: true
|
|
- name: INS_INCOME_TO
|
|
type: DECIMAL(9,0)
|
|
primary_key: true
|
|
- name: INS_HEALTH_RATE
|
|
type: DECIMAL(7,6)
|
|
- name: INS_PENSION_RATE
|
|
type: DECIMAL(7,6)
|
|
- name: UPDATED_AT
|
|
type: TIMESTAMP
|
|
|
|
subprograms:
|
|
- SUB02MSG
|
|
- SUB03END
|