首页>代码>mybatis plus实现简单的增删改查>/mpdemo1010/src/main/java/com/jiyc/mpdemo/entity/User.java
package com.jiyc.mpdemo.entity;

import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;

import java.util.Date;

@Data

public class User {

    //@TableId(type = IdType.ID_WORKER) //mp自带策略,生成19位值,数字类型使用这种策略,比如long
    //@TableId(type = IdType.ID_WORKER_STR) //mp自带策略,生成19位值,字符串类型使用这种策略
    private Long id;

    private String name;
    private Integer age;
    private String email;

    //create_time
    @TableField(fill = FieldFill.INSERT)
    private Date createTime;

    //update_time
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Date updateTime;

    @Version
    @TableField(fill = FieldFill.INSERT)
    private Integer version;//版本号
    //MyBatisPlus逻辑删除注解
//    @TableLogic
    private Integer deleted;
}

最近下载更多
oulingqiao  LV13 1月11日
youzitao  LV11 2023年4月17日
shaoxf_nihao  LV4 2022年6月10日
Super强  LV13 2022年5月14日
朴宰范  LV1 2022年5月1日
微信网友_5876078907576320  LV1 2022年3月17日
采暖11  LV11 2021年11月14日
xxxjjj123  LV6 2021年6月24日
wananall  LV13 2021年3月25日
0312wangchen  LV26 2021年2月25日
最近浏览更多
 LV7 3月29日
zjczds 3月21日
暂无贡献等级
oulingqiao  LV13 1月11日
fuyouou  LV5 2023年6月23日
syczzxj  LV9 2023年5月30日
youzitao  LV11 2023年4月17日
2237851964  LV1 2023年3月12日
李亮  LV19 2023年3月6日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友