Mybatis-Plus基本
生活随笔
收集整理的這篇文章主要介紹了
Mybatis-Plus基本
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
@Data
@AllArgsConstructor//全參構造
@NoArgsConstructor//無參構造
@Accessors(chain = true)//鏈表模式
@TableName("User")//映射數據表名
public class User implements Serializable {//序列化傳輸保證數據完整@TableId(type = IdType.UUID)//設定主鍵自增private Integer id;@TableField("name")//設定屬性與字段名映射private String name;private Integer age;private String hobby;}
?
?
總結
以上是生活随笔為你收集整理的Mybatis-Plus基本的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 牛奶是乳浊液吗 牛奶是不是乳浊液
- 下一篇: 刚入职遇到的问题