You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
749 B
40 lines
749 B
package com.shkj.wms.bo;
|
|
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
import lombok.experimental.Accessors;
|
|
|
|
import java.io.Serializable;
|
|
|
|
@Data
|
|
@NoArgsConstructor
|
|
@Accessors(chain = true)
|
|
public class BusinTaskManageQueryBo implements Serializable {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** 任务ID */
|
|
private Long taskId;
|
|
|
|
/** 任务日期 */
|
|
private String createTime;
|
|
|
|
/** 任务编号 */
|
|
private String taskCode;
|
|
|
|
/** 任务类型 */
|
|
private String taskType;
|
|
|
|
/** 状态 */
|
|
private String taskStatus;
|
|
|
|
/** 作业方式 */
|
|
private String exeDev;
|
|
|
|
/** 异常状态 */
|
|
private int exceStatus;
|
|
|
|
private String createTimeS;
|
|
private String createTimeE;
|
|
|
|
}
|
|
|