首页>代码>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;
}

最近下载更多
wangzhq610  LV10 2024年10月7日
Oxygeni  LV6 2024年7月14日
oulingqiao  LV13 2024年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日
最近浏览更多
水媚儿 1月6日
暂无贡献等级
wangzhq610  LV10 2024年10月7日
Oxygeni  LV6 2024年7月14日
气之子dss  LV4 2024年6月24日
TY0165  LV20 2024年6月19日
nurgul  LV1 2024年6月8日
ma406805131  LV19 2024年5月11日
 LV7 2024年3月29日
zjczds 2024年3月21日
暂无贡献等级
微信网友_6427471221870592  LV2 2024年3月10日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友