This commit is contained in:
Putoo
2026-05-26 18:38:55 +08:00
parent 61cf882b66
commit 6b7193b4c0
33 changed files with 1021 additions and 42 deletions

View File

@@ -0,0 +1,21 @@
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
}