Commit 4d211389 by 王宇航

1.8.5

OrderInfoBean新增rePrint,lastTimePrintType
parent 18c32e85
......@@ -55,32 +55,7 @@ afterEvaluate {
groupId = "com.gingersoft.connect"
artifactId = "Connect"
version = "1.8.4"
// 添加 POM 配置
// pom {
// name.set("GingerSoftConnect")
// description.set("用於局域網多設備發現、連接、通信的庫")
// url.set("https://your.library.url")
//
// licenses {
// license {
// name.set("The Apache License, Version 2.0")
// url.set("http://www.apache.org/licenses/LICENSE-2.0.txt")
// }
// }
// developers {
// developer {
// id.set("developerId")
// name.set("Developer Name")
// email.set("1239658231@qq.com")
// }
// }
// scm {
// connection.set("scm:git:git://your.repository.url.git")
// developerConnection.set("scm:git:ssh://your.repository.url.git")
// url.set("https://your.repository.url")
// }
// }
version = "1.8.5"
}
}
......
......@@ -77,6 +77,8 @@ public class OrderInfoBean extends SendMsgType {
* 飛單描述,例如本機為k2,POS機從k1打印失敗,轉到K2打印,可以在此字段中寫K1->K2
*/
private String flyPrintInfo;
private boolean rePrint;
private int lastTimePrintType;
/**
* kds在Pos設備中的名稱
*/
......@@ -230,6 +232,22 @@ public class OrderInfoBean extends SendMsgType {
this.flyPrintInfo = flyPrintInfo;
}
public boolean isRePrint() {
return rePrint;
}
public void setRePrint(boolean rePrint) {
this.rePrint = rePrint;
}
public int getLastTimePrintType() {
return lastTimePrintType;
}
public void setLastTimePrintType(int lastTimePrintType) {
this.lastTimePrintType = lastTimePrintType;
}
public String getKdsName() {
return kdsName;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment