打印
This commit is contained in:
@@ -88,6 +88,10 @@ public class CheckOrderPay implements Serializable {
|
||||
* 使用的积分数量 (扣除各类折扣 enable_deduction后使用)
|
||||
*/
|
||||
private Integer pointsNum;
|
||||
/**
|
||||
* 是否打票
|
||||
*/
|
||||
private Integer isPrint;
|
||||
|
||||
private String remark;
|
||||
|
||||
@@ -96,6 +100,10 @@ public class CheckOrderPay implements Serializable {
|
||||
return seatNum == null ? 0 : seatNum;
|
||||
}
|
||||
|
||||
public Integer getIsPrint() {
|
||||
return isPrint == null ? 1 : isPrint;
|
||||
}
|
||||
|
||||
public Integer getPointsNum() {
|
||||
return pointsNum == null ? 0 : pointsNum;
|
||||
}
|
||||
|
||||
@@ -245,6 +245,10 @@ public class OrderInfo implements Serializable {
|
||||
* 是否使用了霸王餐
|
||||
*/
|
||||
private Integer isFreeDine;
|
||||
/**
|
||||
* 是否打票
|
||||
*/
|
||||
private Integer isPrint;
|
||||
|
||||
/**
|
||||
* 是否等叫 0 否 1 等叫
|
||||
|
||||
Reference in New Issue
Block a user