# mybatis-enum **Repository Path**: douhun/mybatis-enum ## Basic Information - **Project Name**: mybatis-enum - **Description**: No description available - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2015-12-31 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #mybatis-enum create sql CREATE TABLE `t_user` ( `id` varchar(45) NOT NULL, `accountID` varchar(45) DEFAULT NULL, `userName` varchar(45) DEFAULT NULL, `statusDef` varchar(45) DEFAULT NULL, `statusOrdinal` varchar(45) DEFAULT NULL, `statusCustom` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户表'