63 lines
1.3 KiB
JavaScript
63 lines
1.3 KiB
JavaScript
export const columns = [
|
|
{
|
|
title: "姓名",
|
|
dataIndex: 'username',
|
|
key: 'username',
|
|
},
|
|
{
|
|
title: "个税扣缴义务人",
|
|
dataIndex: 'taxAgentName',
|
|
key: 'taxAgentName',
|
|
},
|
|
{
|
|
title: "部门",
|
|
dataIndex: 'departmentName',
|
|
key: 'departmentName',
|
|
},
|
|
{
|
|
title: "手机号",
|
|
dataIndex: 'mobile',
|
|
key: 'mobile',
|
|
},
|
|
{
|
|
title: "工号",
|
|
dataIndex: 'jobNum',
|
|
key: 'jobNum',
|
|
},
|
|
{
|
|
title: "证件号码",
|
|
dataIndex: 'idNo',
|
|
key: 'idNo',
|
|
},
|
|
{
|
|
title: "入职日期",
|
|
dataIndex: 'hiredate',
|
|
key: 'hiredate',
|
|
},
|
|
{
|
|
title: "累计子女教育",
|
|
dataIndex: 'addUpChildEducation',
|
|
key: 'addUpChildEducation',
|
|
},
|
|
{
|
|
title: "累计继续教育",
|
|
dataIndex: 'addUpContinuingEducation',
|
|
key: 'addUpContinuingEducation',
|
|
},
|
|
{
|
|
title: "累计住房贷款利息",
|
|
dataIndex: 'addUpHousingLoanInterest',
|
|
key: 'addUpHousingLoanInterest',
|
|
},
|
|
{
|
|
title: "累计住房租金",
|
|
dataIndex: 'addUpHousingRent',
|
|
key: 'addUpHousingRent',
|
|
},
|
|
{
|
|
title: "累计赡养老人",
|
|
dataIndex: 'addUpSupportElderly',
|
|
key: 'addUpSupportElderly',
|
|
}
|
|
]
|