# portal **Repository Path**: barlow_hua/portal ## Basic Information - **Project Name**: portal - **Description**: mybatis统一crud - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2016-11-15 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # portal  version:v1.0 实现功能:对单条数据的查询、插入、更新、删除。 attention 1.因本人使用的数据库为Mysql,Oracle没做过测试。 2.java 实体类字段名为驼峰风格,数据库字段名为下划线风格。 3.每张表都必须要有一个主键字段,字段类型为Integer,若要改为String或Object需要修改源码。 4.必须在实体类中注明主键,表名(可选),使用JPA注解。 5.对于枚举类型的处理,以枚举ordinal()值,存取到数据库中。