56 lines
911 B
Java
56 lines
911 B
Java
package com.peanut.modules.book.entity;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* 签到表
|
|
*/
|
|
@Data
|
|
@TableName("book_clockin_punch")
|
|
public class BookClockinPunchEntity implements Serializable {
|
|
|
|
/**
|
|
*
|
|
*/
|
|
@TableId
|
|
private Integer id;
|
|
/**
|
|
*
|
|
*/
|
|
@TableField("book_id")
|
|
private Integer bookId;
|
|
/**
|
|
*
|
|
*/
|
|
@TableField("user_id")
|
|
private Integer userId;
|
|
/**
|
|
*
|
|
*/
|
|
@TableField("days")
|
|
private Integer days;
|
|
/**
|
|
*创建注解
|
|
*/
|
|
@TableField(fill = FieldFill.INSERT)
|
|
private Date createTime;
|
|
/**
|
|
*
|
|
*/
|
|
@TableField(fill = FieldFill.INSERT_UPDATE)
|
|
private Date updateTime;
|
|
/**
|
|
*
|
|
*/
|
|
@TableField("t_id")
|
|
private Integer tId;
|
|
|
|
|
|
|
|
@TableLogic
|
|
private Integer delFlag;
|
|
|
|
}
|