最新成果

This commit is contained in:
eson
2023-06-01 16:19:24 +08:00
parent 5446c4123a
commit 7ffbce7759
10 changed files with 241 additions and 20 deletions

10
ddl/fs_canteen_type.sql Normal file
View File

@@ -0,0 +1,10 @@
-- fusentest.fs_canteen_type definition
CREATE TABLE `fs_canteen_type` (
`id` int(10) NOT NULL AUTO_INCREMENT COMMENT 'ID',
`name` varchar(50) NOT NULL DEFAULT '' COMMENT '餐厅名字',
`sort` smallint(6) NOT NULL DEFAULT '0' COMMENT '排序',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '状态位 1启用0停用',
`ctime` int(11) NOT NULL DEFAULT '0' COMMENT '添加时间',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=24 DEFAULT CHARSET=utf8 COMMENT='餐厅类型表';