后端增加发放好客权益券的接口

This commit is contained in:
2026-07-12 20:28:43 +08:00
parent b267e885be
commit b5235dedef
8 changed files with 303 additions and 34 deletions
+7
View File
@@ -19,3 +19,10 @@ export interface BenefitLedgerDto {
balanceAfter: number;
createdAt: string;
}
/** HQ 手动发放权益 */
export interface AdminBenefitGrantRequest {
phone: string;
amount: number;
remark?: string;
}