Files
Kg.SeaTime/Service/Application.Domain/Services/Interface/User/IUnitUserAccService.cs
2026-05-26 18:38:55 +08:00

21 lines
650 B
C#

namespace Application.Domain;
public interface IUnitUserAccService
{
Task<long> GetUserAccInfo(string userId, string accType);
#region
Task<unit_user_acc> GetUserAccInfo(string userId);
Task<bool> UpdateUserAcc(string userId, int type, string accType, long count, string name = "",
string remark = "");
Task<bool> UpdateUserAccBath(string userId, int type, string accType, long count, string name = "",
string remark = "");
Task<unit_user_copper> GetUserCopperInfo(string userId);
Task<bool> UpdateUserCopper(string userId, int type, long count, string remark = "");
#endregion
}