Merge remote-tracking branch 'origin/master'
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
package com.czg.account.dto.merchant;
|
||||
|
||||
import jakarta.validation.constraints.NotEmpty;
|
||||
import jakarta.validation.constraints.NotNull;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
@@ -8,6 +9,7 @@ import lombok.Data;
|
||||
*/
|
||||
@Data
|
||||
public class ShopMerchantEditDTO {
|
||||
@NotNull(message = "店铺id不为空")
|
||||
private Long shopId;
|
||||
@NotEmpty(message = "支付系统商户id不为空")
|
||||
private String storeId;
|
||||
|
||||
@@ -14,7 +14,7 @@ import java.io.Serializable;
|
||||
*/
|
||||
public interface ShopMerchantService extends IService<ShopMerchant> {
|
||||
|
||||
ShopMerchant detail();
|
||||
ShopMerchant detail(Integer shopId);
|
||||
|
||||
Boolean edit(ShopMerchantEditDTO shopMerchantEditDTO);
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user