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