9 小时以前 7dc2054d4d93f17ce8595f1b0559c904bee2a38f
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
package cn.iocoder.yudao.module.mes.dal.dataobject.pro.scan;
 
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
import com.baomidou.mybatisplus.annotation.KeySequence;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.*;
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@TableName("mes_pro_scan_event")
@KeySequence("mes_pro_scan_event_seq")
@Data @EqualsAndHashCode(callSuper = true) @Builder @NoArgsConstructor @AllArgsConstructor
public class MesProScanEventDO extends BaseDO {
    @TableId private Long id;
    private String eventId;
    private String bagCode;
    private Long bagCodeId;
    private Long batchId;
    private String batchCode;
    private Long itemId;
    private BigDecimal quantity;
    private String deviceCode;
    private String lineCode;
    private Long warehouseId;
    private Long locationId;
    private Long areaId;
    private Long transactionId;
    private String status;
    private String errorCode;
    private String errorMessage;
    private LocalDateTime receivedTime;
    private LocalDateTime failedTime;
    private LocalDateTime eventTime;
    private String remark;
}