综合办公系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516
  1. DROP TABLE IF EXISTS `cmc_performance_staff`;
  2. CREATE TABLE `cmc_performance_staff` (
  3. `performance_staff_id` int NOT NULL AUTO_INCREMENT COMMENT '员工绩效id',
  4. `project_id` char(19)DEFAULT NULL COMMENT '项目id',
  5. `user_id` bigint NULL COMMENT '员工id',
  6. `work_type` char(2)DEFAULT NULL COMMENT '作业类别',
  7. `content` varchar(255)DEFAULT NULL COMMENT '工作内容',
  8. `scale_grade` varchar(20)DEFAULT NULL COMMENT '比例尺',
  9. `workload` double NULL COMMENT '工作量',
  10. `unit` varchar(10)DEFAULT NULL COMMENT '单位',
  11. `coefficient` double NULL COMMENT '系数',
  12. `performance` decimal(10, 2)NULL COMMENT '绩效',
  13. `performance_month` date NULL COMMENT '月份',
  14. `remark` varchar(255)DEFAULT NULL COMMENT '备注',
  15. PRIMARY KEY (`performance_staff_id`) USING BTREE
  16. ) ENGINE = InnoDB comment 'cmc员工绩效表';