排队小票问题

This commit is contained in:
2026-04-17 10:21:05 +08:00
parent b854c9bc0f
commit 021fd32228
8 changed files with 91 additions and 63 deletions

View File

@@ -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;
}