1212
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user