package com.lxzn.framework.domain.mes.request;
|
|
import lombok.Data;
|
|
/**
|
* @author clown
|
* * @date 2022/11/8
|
*/
|
@Data
|
public class MesDispatchTaskRequest {
|
private String mdsItemCode; //零件号
|
private String routeId; //工艺规程编号
|
private String mdsEquipmentId; //设备编号
|
private String mdsWorkcenterId; //车间
|
/*升序降序 asc升序 desc降序*/
|
private String createTime;
|
|
/**
|
* 时间
|
*/
|
private String startTime;
|
private String endTime;
|
}
|