首页>代码>SpringBoot整合mybatis实现自动创建数据库表自动建表,mybatis逆向生成数据库表>/springboot-mybatis-actable/src/main/java/com/simon/springbootmybatisactable/entity/User.java
package com.simon.springbootmybatisactable.entity; import com.gitee.sunchenbin.mybatis.actable.annotation.Column; import com.gitee.sunchenbin.mybatis.actable.annotation.Table; import com.gitee.sunchenbin.mybatis.actable.constants.MySqlTypeConstant; import lombok.Data; /** * @author Simon */ @Data @Table(name = "user") public class User { @Column(name = "id", type = MySqlTypeConstant.BIGINT, isKey = true, isAutoIncrement = true) private Long id; @Column(name = "login_name", type = MySqlTypeConstant.VARCHAR, length = 10, isNull = false, isUnique = true) private String loginName; @Column(name = "password", type = MySqlTypeConstant.VARCHAR, length = 32, isNull = false) private String password; }
最近浏览更多
Oxygeni LV6
7月14日
加油干阳神 LV9
5月21日
denliv_hui LV13
4月26日
微信网友_6888487558615040 LV6
3月1日
wangbo21 LV1
2023年11月16日
张晨曦 LV4
2023年11月15日
Seaskye LV14
2023年11月10日
3334004690 LV10
2023年11月1日
maniheim LV7
2023年10月24日
shuangfu LV25
2023年10月23日