排队小票问题
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
package com.czg.print;
|
||||
|
||||
import com.czg.account.entity.CallQueue;
|
||||
import com.czg.account.entity.CallTable;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serial;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author ww
|
||||
*/
|
||||
@Data
|
||||
public class CallTablePrintDTO implements Serializable {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private CallQueue callQueue;
|
||||
|
||||
private CallTable callTable;
|
||||
|
||||
//二维码地址
|
||||
private String callUrl;
|
||||
|
||||
private Long preNum;
|
||||
}
|
||||
Reference in New Issue
Block a user