车间能级提升-智能设备管理系统
朱桂飞
2025-02-08 a4e9be7205274b93571c74268855b39129145328
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
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.io.Serial;
 
/**
 * 盘点明细对象 eims_inventory_detail
 *
 * @author zhuguifei
 * @date 2025-02-06
 */
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("eims_inventory_detail")
public class EimsInventoryDetail extends BaseEntity {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 
     */
    @TableId(value = "id")
    private Long id;
 
    /**
     * 盘点id
     */
    private Long inventoryId;
 
    /**
     * 设备id
     */
    private Long equId;
 
    /**
     * 盘点结果
     */
    private String status;
 
    /**
     * 备注
     */
    private String remark;
 
 
}