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;
|
}
|