一对一聊天重构,期待群聊开发
This commit is contained in:
17
script/sql/20241120表结构备份/sys_oa_attendance.sql
Normal file
17
script/sql/20241120表结构备份/sys_oa_attendance.sql
Normal file
@@ -0,0 +1,17 @@
|
||||
create table fad_oa.sys_oa_attendance
|
||||
(
|
||||
id bigint auto_increment comment '主键id'
|
||||
primary key,
|
||||
user_id bigint null comment '员工id',
|
||||
attendance_day int null comment '签到日',
|
||||
project_id bigint null comment '项目id',
|
||||
day_length double null comment '时长(天)1|0.5',
|
||||
hour double null comment '时长(小时)',
|
||||
create_time datetime null comment '创建时间',
|
||||
create_by varchar(20) null comment '创建人',
|
||||
update_time datetime null comment '更新时间',
|
||||
update_by varchar(20) null comment '更新人',
|
||||
remark varchar(512) null comment '备注',
|
||||
del_flag tinyint default 0 null comment '删除标志'
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user