Junjie
2 天以前 63b01db83d9aad8a15276b4236a9a22e4aeef065
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
package com.zy.ai.domain.autotune;
 
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
@Data
public class AutoTuneTaskDetailItem implements Serializable {
    private static final long serialVersionUID = 1L;
 
    private Integer wrkNo;
 
    private Long wrkSts;
 
    private String wrkStsDesc;
 
    private Integer ioType;
 
    private String ioTypeDesc;
 
    private Integer staNo;
 
    private Integer sourceStaNo;
 
    private String sourceLocNo;
 
    private Integer crnNo;
 
    private Integer dualCrnNo;
 
    private String batch;
 
    private Integer batchSeq;
 
    private Date ioTime;
 
    private String systemMsg;
}