| | |
| | | `name` varchar(100) NOT NULL COMMENT '结构名称', |
| | | `base_salary` decimal(12,2) NOT NULL COMMENT '基本工资', |
| | | `performance_ratio` decimal(4,2) DEFAULT 0 COMMENT '绩效工资占比(%)', |
| | | `overtime_pay_ratio` decimal(4,2) DEFAULT 1.5 COMMENT '加班工资倍率', |
| | | `overtime_pay_ratio` decimal(4,2) DEFAULT 1.5 COMMENT '工作日加班工资倍率', |
| | | `rest_day_overtime_pay_ratio` decimal(4,2) DEFAULT 2.0 COMMENT '休息日加班工资倍率', |
| | | `legal_holiday_overtime_pay_ratio` decimal(4,2) DEFAULT 3.0 COMMENT '法定节假日加班工资倍率', |
| | | `social_security_base` decimal(12,2) DEFAULT NULL COMMENT '社保基数', |
| | | `housing_fund_base` decimal(12,2) DEFAULT NULL COMMENT '公积金基数', |
| | | `status` tinyint NOT NULL DEFAULT 0 COMMENT '状态:0-启用,1-禁用', |