新增桌码绑定接口
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package cn.ysk.cashier.dto.shoptable;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotEmpty;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
@Data
|
||||
public class BindTableQrCodeDTO {
|
||||
@NotNull
|
||||
private Integer shopId;
|
||||
@NotNull
|
||||
private Integer id;
|
||||
@NotEmpty
|
||||
private String code;
|
||||
}
|
||||
Reference in New Issue
Block a user