TASK:获取affiliate的用户名和id;BUGFIX:模特无法保存

This commit is contained in:
2025-08-21 13:22:22 +08:00
parent 7436fa17c0
commit e4ce7e9e63
6 changed files with 58 additions and 16 deletions

View File

@@ -9,6 +9,8 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService;
import java.math.BigDecimal;
import java.util.List;
import java.util.Map;
public interface AffiliateService extends IService<Affiliate> {
@@ -37,4 +39,6 @@ public interface AffiliateService extends IService<Affiliate> {
void commissionCalculation(Integer year, Integer month);
void calcCouponsCommission();
List<Map<String, Object>> getAllAffiliateUsername();
}