package org.dromara.eims.domain;
|
|
import org.dromara.common.mybatis.core.domain.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.*;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import java.util.Date;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import java.io.Serial;
|
|
/**
|
* 工具借用对象 eims_fixture_borrow
|
*
|
* @author zhuguifei
|
* @date 2025-02-18
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@TableName("eims_fixture_borrow")
|
public class EimsFixtureBorrow extends BaseEntity {
|
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
/**
|
*
|
*/
|
@TableId(value = "id")
|
private Long id;
|
|
/**
|
* 借用工具id
|
*/
|
private Long fixtureId;
|
|
/**
|
* 借用工具名称
|
*/
|
private String fixtureName;
|
|
/**
|
* 借用部门
|
*/
|
private Long borrowDept;
|
|
/**
|
* 借用人
|
*/
|
private Long borrowUser;
|
|
/**
|
* 经办人
|
*/
|
private Long agentUser;
|
|
/**
|
* 借用记录状态(字典)
|
*/
|
private String status;
|
|
/**
|
* 借用时间
|
*/
|
private Date borrowTime;
|
|
/**
|
* 预计归还时间
|
*/
|
private Date planReturnTime;
|
|
/**
|
* 归还时间
|
*/
|
private Date returnTime;
|
|
/**
|
* 借用理由
|
*/
|
private String borrowReason;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
|
}
|