运营端充值

This commit is contained in:
张松
2025-10-27 14:12:49 +08:00
parent 22ab03ea51
commit 249c6b4a6e
7 changed files with 41 additions and 8 deletions

View File

@@ -17,6 +17,6 @@ public record SysLoginDTO(
@NotEmpty(message = "uid不为空")
String uuid, // 验证码uid
@NotNull
Integer loginType // 登录类型 0:商户登录 1:员工登录
Integer loginType
) {
}

View File

@@ -31,4 +31,6 @@ public interface MkDistributionConfigService extends IService<MkDistributionConf
* @param shopId 店铺id
*/
void open(Long userId, BigDecimal amount, Long shopId, Long sourceId);
void rechargeCallBack(Long userId, Long shopId, BigDecimal amount, Long paymentId);
}

View File

@@ -29,4 +29,5 @@ public class MkDistributionPayDTO implements Serializable {
private String buyerRemark;
private BigDecimal amount;
private String remark;
private String code;
}