|
|
@@ -67,21 +67,21 @@ create table am_alumnus_ex
|
|
|
-- ----------------------------
|
|
|
-- 3、学习经历信息
|
|
|
-- ----------------------------
|
|
|
-drop table if exists am_study;
|
|
|
-create table am_study
|
|
|
-(
|
|
|
- study_id bigint(20) not null comment '校友id',
|
|
|
- am_id bigint(20) not null comment '校友id',
|
|
|
- study varchar(30) not null comment '专业名称',
|
|
|
- enrol_year char(4) not null comment '入学年份',
|
|
|
- graduate_year char(4) not null comment '毕业年份',
|
|
|
- create_by varchar(64) default '' comment '创建者',
|
|
|
- create_time datetime comment '创建时间',
|
|
|
- update_by varchar(64) default '' comment '更新者',
|
|
|
- update_time datetime comment '更新时间',
|
|
|
- primary key (study_id)
|
|
|
-) engine = innodb
|
|
|
- auto_increment = 100 comment = '学习经历信息';
|
|
|
+# drop table if exists am_study;
|
|
|
+# create table am_study
|
|
|
+# (
|
|
|
+# study_id bigint(20) not null comment '校友id',
|
|
|
+# am_id bigint(20) not null comment '校友id',
|
|
|
+# study varchar(30) not null comment '专业名称',
|
|
|
+# enrol_year char(4) not null comment '入学年份',
|
|
|
+# graduate_year char(4) not null comment '毕业年份',
|
|
|
+# create_by varchar(64) default '' comment '创建者',
|
|
|
+# create_time datetime comment '创建时间',
|
|
|
+# update_by varchar(64) default '' comment '更新者',
|
|
|
+# update_time datetime comment '更新时间',
|
|
|
+# primary key (study_id)
|
|
|
+# ) engine = innodb
|
|
|
+# auto_increment = 100 comment = '学习经历信息';
|
|
|
|
|
|
-- ----------------------------
|
|
|
-- 4、好友信息
|
|
|
@@ -201,6 +201,8 @@ create table am_activity_apply
|
|
|
cost_status char(4) default '0' comment '费用状态(0未支付 1已支付)',
|
|
|
cost_audit_user varchar(64) comment '费用审核人',
|
|
|
cost_time datetime default null comment '费用确认时间',
|
|
|
+ is_attend char(1) default '0' comment '是否参加(0未参加 1已参加)',
|
|
|
+ attend_time datetime comment '参加时间',
|
|
|
del_flag char(1) default '0' comment '删除标志(0代表存在 1代表删除)',
|
|
|
create_by varchar(64) default '' comment '创建者',
|
|
|
create_time datetime comment '创建时间',
|