烘房看板接口
parent
cec59e4bc4
commit
bb0ac02cc8
@ -0,0 +1,40 @@
|
||||
package com.op.mes.domain;
|
||||
|
||||
public class BufferInfoParam {
|
||||
private String reqCode;
|
||||
private String reqTime;
|
||||
private String factory;
|
||||
private String bufferType;
|
||||
|
||||
public String getReqCode() {
|
||||
return reqCode;
|
||||
}
|
||||
|
||||
public void setReqCode(String reqCode) {
|
||||
this.reqCode = reqCode;
|
||||
}
|
||||
|
||||
public String getReqTime() {
|
||||
return reqTime;
|
||||
}
|
||||
|
||||
public void setReqTime(String reqTime) {
|
||||
this.reqTime = reqTime;
|
||||
}
|
||||
|
||||
public String getFactory() {
|
||||
return factory;
|
||||
}
|
||||
|
||||
public void setFactory(String factory) {
|
||||
this.factory = factory;
|
||||
}
|
||||
|
||||
public String getBufferType() {
|
||||
return bufferType;
|
||||
}
|
||||
|
||||
public void setBufferType(String bufferType) {
|
||||
this.bufferType = bufferType;
|
||||
}
|
||||
}
|
@ -0,0 +1,47 @@
|
||||
/**
|
||||
* Copyright 2023 json.cn
|
||||
*/
|
||||
package com.op.mes.domain.buffer;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Auto-generated: 2023-11-10 11:26:39
|
||||
*
|
||||
* @author json.cn (i@json.cn)
|
||||
* @website http://www.json.cn/java2pojo/
|
||||
*/
|
||||
public class JsonRootBean {
|
||||
|
||||
private String reqCode;
|
||||
private int code;
|
||||
private String message;
|
||||
private List<Locations> locations;
|
||||
public void setReqCode(String reqCode) {
|
||||
this.reqCode = reqCode;
|
||||
}
|
||||
public String getReqCode() {
|
||||
return reqCode;
|
||||
}
|
||||
|
||||
public void setCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setMessage(String message) {
|
||||
this.message = message;
|
||||
}
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
|
||||
public void setLocations(List<Locations> locations) {
|
||||
this.locations = locations;
|
||||
}
|
||||
public List<Locations> getLocations() {
|
||||
return locations;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,78 @@
|
||||
/**
|
||||
* Copyright 2023 json.cn
|
||||
*/
|
||||
package com.op.mes.domain.buffer;
|
||||
|
||||
/**
|
||||
* Auto-generated: 2023-11-10 11:26:39
|
||||
*
|
||||
* @author json.cn (i@json.cn)
|
||||
* @website http://www.json.cn/java2pojo/
|
||||
*/
|
||||
public class Locations {
|
||||
|
||||
private String location;
|
||||
private String bufferType;
|
||||
private boolean isBooked;
|
||||
private boolean isUsed;
|
||||
private boolean isOccupeid;
|
||||
private String rfid;
|
||||
private String reason;
|
||||
private String sku;
|
||||
public void setLocation(String location) {
|
||||
this.location = location;
|
||||
}
|
||||
public String getLocation() {
|
||||
return location;
|
||||
}
|
||||
|
||||
public void setBufferType(String bufferType) {
|
||||
this.bufferType = bufferType;
|
||||
}
|
||||
public String getBufferType() {
|
||||
return bufferType;
|
||||
}
|
||||
|
||||
public void setIsBooked(boolean isBooked) {
|
||||
this.isBooked = isBooked;
|
||||
}
|
||||
public boolean getIsBooked() {
|
||||
return isBooked;
|
||||
}
|
||||
|
||||
public void setIsUsed(boolean isUsed) {
|
||||
this.isUsed = isUsed;
|
||||
}
|
||||
public boolean getIsUsed() {
|
||||
return isUsed;
|
||||
}
|
||||
|
||||
public void setIsOccupeid(boolean isOccupeid) {
|
||||
this.isOccupeid = isOccupeid;
|
||||
}
|
||||
public boolean getIsOccupeid() {
|
||||
return isOccupeid;
|
||||
}
|
||||
|
||||
public void setRfid(String rfid) {
|
||||
this.rfid = rfid;
|
||||
}
|
||||
public String getRfid() {
|
||||
return rfid;
|
||||
}
|
||||
|
||||
public void setReason(String reason) {
|
||||
this.reason = reason;
|
||||
}
|
||||
public String getReason() {
|
||||
return reason;
|
||||
}
|
||||
|
||||
public void setSku(String sku) {
|
||||
this.sku = sku;
|
||||
}
|
||||
public String getSku() {
|
||||
return sku;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue