task `1565` 增加发运字段
parent
86713a01f2
commit
5d6588b5af
@ -0,0 +1,35 @@
|
||||
package cn.estsh.i3plus.pojo.mes.model;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* @author Wynne.Lu
|
||||
* @date 2020/3/13 17:55
|
||||
* @desc
|
||||
*/
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
public class StateDispatchModel {
|
||||
|
||||
private String statesKey;
|
||||
|
||||
private String firstScanKey;
|
||||
|
||||
private String cellParamKey;
|
||||
|
||||
private String requestBeanKey;
|
||||
|
||||
private String moduleDataMapKey;
|
||||
|
||||
private String scanInfo;
|
||||
|
||||
public StateDispatchModel(String statesKey, String firstScanKey, String cellParamKey, String requestBeanKey, String moduleDataMapKey, String scanInfo) {
|
||||
this.statesKey = statesKey;
|
||||
this.firstScanKey = firstScanKey;
|
||||
this.cellParamKey = cellParamKey;
|
||||
this.requestBeanKey = requestBeanKey;
|
||||
this.moduleDataMapKey = moduleDataMapKey;
|
||||
this.scanInfo = scanInfo;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue