17 lines
347 B
Java
17 lines
347 B
Java
|
|
package com.ai.da.service;
|
||
|
|
|
||
|
|
public interface CreditsService {
|
||
|
|
|
||
|
|
void initCredits();
|
||
|
|
|
||
|
|
Boolean buyCredits(Long accountId, Integer quantity);
|
||
|
|
|
||
|
|
void creditsIncrease(Long accountId, String event);
|
||
|
|
|
||
|
|
void creditsDecrease(Long accountId, String event);
|
||
|
|
|
||
|
|
String getCredits();
|
||
|
|
|
||
|
|
void creditsRefund(Long accountId, Integer quantity);
|
||
|
|
}
|