This commit is contained in:
葛林强 2025-03-06 14:16:30 +08:00
parent a8a73a1af9
commit de2784292b
3 changed files with 29 additions and 8 deletions

View File

@ -138,7 +138,7 @@ public class HttpUtils
conn.setRequestProperty("connection", "Keep-Alive"); conn.setRequestProperty("connection", "Keep-Alive");
conn.setRequestProperty("user-agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64)"); conn.setRequestProperty("user-agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64)");
conn.setRequestProperty("Accept-Charset", "utf-8"); conn.setRequestProperty("Accept-Charset", "utf-8");
conn.setRequestProperty("contentType", "utf-8"); conn.setRequestProperty("contentType", "application/json");
conn.setDoOutput(true); conn.setDoOutput(true);
conn.setDoInput(true); conn.setDoInput(true);
out = new PrintWriter(conn.getOutputStream()); out = new PrintWriter(conn.getOutputStream());

View File

@ -11,7 +11,7 @@ public class WcsCommonRes {
/** /**
* message * message
*/ */
private String message; private String msg;
/** /**
* data * data
*/ */
@ -25,12 +25,12 @@ public class WcsCommonRes {
this.code = code; this.code = code;
} }
public String getMessage() { public String getMsg() {
return message; return msg;
} }
public void setMessage(String message) { public void setMsg(String message) {
this.message = message; this.msg = message;
} }
public Object getData() { public Object getData() {

View File

@ -76,6 +76,27 @@ public class AppTaskBak extends BaseEntity
/** PLC任务号 */ /** PLC任务号 */
@Excel(name = "PLC任务号") @Excel(name = "PLC任务号")
private Long plcId; private Long plcId;
@Excel(name = "库位号")
private String locationId;
//1.零捡 2全量
private Integer ckType;
public String getLocationId() {
return locationId;
}
public void setLocationId(String locationId) {
this.locationId = locationId;
}
public Integer getCkType() {
return ckType;
}
public void setCkType(Integer ckType) {
this.ckType = ckType;
}
public Long getPlcId() { public Long getPlcId() {
return plcId; return plcId;