定时任务 修改进件信息处理

This commit is contained in:
2026-01-15 10:47:51 +08:00
parent b8a6ce495c
commit 01aad45a2b
3 changed files with 23 additions and 9 deletions

View File

@@ -3,7 +3,10 @@ package com.czg.order.service;
import com.czg.order.dto.ShopMerchantDTO;
import com.czg.order.entity.ShopDirectMerchant;
import com.czg.order.entity.ShopMerchant;
import com.czg.pay.NativeMerchantDTO;
import com.mybatisflex.core.service.IService;
import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.NotNull;
import java.io.Serializable;
@@ -22,6 +25,13 @@ public interface ShopMerchantService extends IService<ShopMerchant> {
*/
Boolean editEntry(ShopMerchantDTO shopMerchantParam, boolean isUp);
/**
* 已绑定的支付
* 更新商户支付参数
*/
void upMerchant(@NotBlank String relatedLicenceNo, @NotNull NativeMerchantDTO nativeMerchantDTO);
@Override
ShopMerchant getById(Serializable id);