打印尝试 2
This commit is contained in:
@@ -25,7 +25,9 @@ public interface ShopTableService extends IService<ShopTable> {
|
||||
|
||||
Boolean add(Long shopId, ShopTableAddDTO shopTableAddDTO);
|
||||
|
||||
ShopTable getOneByTableCode(@NotNull Long shopId,@NotBlank String tableCode);
|
||||
ShopTable getOneByTableCode(@NotNull Long shopId, @NotBlank String tableCode);
|
||||
|
||||
String getTableAreaAndName(Long shopId, String tableCode, String tableName);
|
||||
|
||||
void createQrCode(Long shopId, Integer num, HttpServletResponse response, HttpServletRequest request) throws IOException;
|
||||
|
||||
@@ -39,6 +41,7 @@ public interface ShopTableService extends IService<ShopTable> {
|
||||
Boolean updateStatus(long shopId, Long tableId, String tableCode, String status);
|
||||
|
||||
Boolean clear(long shopId, ShopTableClearDTO shopTableClearDTO);
|
||||
|
||||
Boolean expiredTable(long tableId);
|
||||
|
||||
Page<ShopTableVO> pageInfo(Long shopId, Integer areaId, String tableCode, String status, String name, Boolean isBind);
|
||||
|
||||
@@ -37,6 +37,8 @@ public class OrderInfoRefundDTO implements Serializable {
|
||||
*/
|
||||
@NotNull(message = "退单金额不能为空")
|
||||
private BigDecimal refundAmount;
|
||||
//操作人
|
||||
private String operator;
|
||||
|
||||
/**
|
||||
* 退款金额 默认为 退单数量*单价* 订单 discount_ratio
|
||||
|
||||
Reference in New Issue
Block a user