package com.ruoyi.warehouse.pojo;
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
import java.util.Date;
|
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
/**
|
* 文档借阅-归还表
|
* @TableName documentation_borrow_management
|
*/
|
@TableName(value ="documentation_borrow_management")
|
@Data
|
@ApiModel(value = "文档借阅-归还表")
|
public class DocumentationBorrowManagement implements Serializable {
|
/**
|
* 主键
|
*/
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 文档id
|
*/
|
private Long documentationId;
|
|
/**
|
* 借阅人id
|
*/
|
private Long borrowerId;
|
|
/**
|
* 借阅目的
|
*/
|
private String borrowPurpose;
|
|
/**
|
* 借阅日期
|
*/
|
private LocalDateTime borrowDate;
|
|
/**
|
* 应归还日期
|
*/
|
private LocalDateTime dueReturnDate;
|
|
/**
|
* 实际归还日期
|
*/
|
private LocalDateTime returnDate;
|
|
/**
|
* 借阅状态
|
*/
|
private String borrowStatus;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
/**
|
* 创建时间
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
private LocalDateTime createTime;
|
|
/**
|
* 创建用户
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
private Long createUser;
|
|
/**
|
* 修改时间
|
*/
|
@TableField(fill = FieldFill.UPDATE)
|
private LocalDateTime updateTime;
|
|
/**
|
* 修改用户
|
*/
|
@TableField(fill = FieldFill.UPDATE)
|
private Long updateUser;
|
|
/**
|
* 租户id
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
private Long tenantId;
|
|
private static final long serialVersionUID = 1L;
|
}
|