add service behavior
This commit is contained in:
parent
30cf6042e5
commit
6f9a2398be
13
1766979183_create_dma_service_behavior.up.sql
Normal file
13
1766979183_create_dma_service_behavior.up.sql
Normal file
@ -0,0 +1,13 @@
|
||||
CREATE TABLE `health`.`ufutx_dma_service_behavior` (
|
||||
`id` BIGINT NOT NULL AUTO_INCREMENT,
|
||||
`group_id` BIGINT NOT NULL COMMENT "群id",
|
||||
`type` TINYINT NULL DEFAULT NULL COMMENT "类型 1:正向激励,2:改善提醒",
|
||||
`service_user_id` BIGINT NULL DEFAULT NULL COMMENT "服务人员id",
|
||||
`apply_user_ud` BIGINT NULL DEFAULT NULL COMMENT "申请人员id",
|
||||
`reason` TEXT NULL DEFAULT NULL COMMENT "事由",
|
||||
`pic` JSON NULL DEFAULT NULL COMMENT "图片",
|
||||
`status` TINYINT NOT NULL COMMENT '状态, 0:未审核,-1:不通过,1:通过',
|
||||
`created_at` TIMESTAMP NULL DEFAULT NULL,
|
||||
`updated_at` TIMESTAMP NULL DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE = InnoDB COMMENT = '服务人员行为记录';
|
||||
Loading…
Reference in New Issue
Block a user