| | |
| | | `total_tax_price` decimal(24, 6) NOT NULL COMMENT '合计税额,单位:元', |
| | | `discount_percent` decimal(24, 6) NOT NULL COMMENT '优惠率,百分比', |
| | | `discount_price` decimal(24, 6) NOT NULL COMMENT '优惠金额,单位:元', |
| | | `deposit_price` decimal(24, 6) NOT NULL COMMENT '定金金额,单位:元', |
| | | `deposit_price` decimal(24, 6) NOT NULL DEFAULT 0 COMMENT '定金金额,单位:元', |
| | | `file_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '附件地址', |
| | | `remark` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '备注', |
| | | `process_instance_id` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT 'BPM 流程实例编号', |
| | |
| | | `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-禁用', |