10 小时以前 16b8e4293a4eba8449018c2b833bab0524846e88
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
package cn.iocoder.yudao.module.mes.dal.dataobject.pro.bagcode;
 
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
import cn.iocoder.yudao.module.mes.dal.dataobject.pro.batch.MesProBatchDO;
import cn.iocoder.yudao.module.mes.dal.dataobject.pro.pallet.MesProPalletDO;
import com.baomidou.mybatisplus.annotation.KeySequence;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.*;
 
import java.time.LocalDateTime;
 
@TableName("mes_pro_bag_code")
@KeySequence("mes_pro_bag_code_seq")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class MesProBagCodeDO extends BaseDO {
    @TableId
    private Long id;
    private String uuid;
    private String code;
    private Integer bagNo;
    private Long batchId;
    private String batchCode;
    private Long palletId;
    private String palletCode;
    private Integer status;
    private LocalDateTime printTime;
    private LocalDateTime cancelTime;
    private String cancelReason;
    private LocalDateTime inboundTime;
    private Long inboundEventId;
    private String inboundDeviceCode;
    private String inboundLineCode;
    private String remark;
}