自动化立体仓库 - WMS系统
1
zhangc
2025-02-07 aa2d520a06c371e76ef26c78d426a01fca76a2fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.zy.asrs.entity.param;
 
import lombok.Data;
 
import java.io.Serializable;
 
@Data
public class AgvWarnBody implements Serializable {
    private static final long serialVersionUID = 1L;
 
    private String robotCode;
 
    private String beginDate;
 
    private String warnContent;
 
    private String taskCode;
 
}