23 lines
811 B
C#
23 lines
811 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 = "");
|
|
Task<unit_user_data> GetUserDataInfo(string userId);
|
|
Task<bool> UpdateUserData(string userId, int type, string accType, long count, string remark = "");
|
|
|
|
#endregion
|
|
} |