增加修炼功能

This commit is contained in:
LN
2026-07-04 14:08:35 +08:00
parent 404af92f96
commit e1bff431e4
7 changed files with 247 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Application.Domain
{
public interface IUnitUserPractiseService
{
Task<bool> DelPractise(string practiseId);
Task<bool> AddPractise(unit_user_practise practise);
Task<unit_user_practise> GetUserPractiseInfo(string practiseId);
Task<List<unit_user_practise>> GetUserPractiseList(string userId, int page, int limit, RefAsync<int> total);
}
}