liding
21 小时以前 d1b5cafeaf5d26a762350c04ebb02ea5b3b8ee7c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package com.ruoyi.business.entity;
 
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import com.ruoyi.common.core.domain.MyBaseEntity;
 
/**
 * 设备使用明细表 实体类
 *
 * @author ld
 * @date 2025-07-23
 */
@Data
@TableName("equipment_usage_detail")
public class EquipmentUsageDetail extends MyBaseEntity {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键ID
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
    /**
     * 关联的使用记录ID
     */
    @TableField(value = "usage_id")
    private Long usageId;
    /**
     * 关联的设备ID
     */
    @TableField(value = "equipment_id")
    private Long equipmentId;
    /**
     * 操作类型:1-领用,2-归还
     */
    @TableField(value = "operation_type")
    private Integer operationType;
    /**
     * 操作数量
     */
    @TableField(value = "quantity")
    private Integer quantity;
    /**
     * 操作人ID
     */
    @TableField(value = "operator_id")
    private Long operatorId;
    /**
     * 操作人
     */
    @TableField(value = "operator")
    private String operator;
    /**
     * 备注
     */
    @TableField(value = "remark")
    private String remark;
}