121212
This commit is contained in:
@@ -14,6 +14,8 @@ public interface IGameEquService
|
||||
Task<List<unit_user_equ>> GetUserEquData(string userId, int type, string equName, int PageIndex, int PageSize,
|
||||
RefAsync<int> Total, bool isRemOn = false, bool isRemLock = false);
|
||||
|
||||
Task<List<unit_user_equ>> GetUserEquData(string userId, int type, string equName, int PageIndex,
|
||||
int PageSize, RefAsync<int> Total,int DealType);
|
||||
Task<List<unit_user_equ>> GetUserEquData(string userId, string query);
|
||||
Task<List<unit_user_equ>> GetUserEquData(string userId, int equId);
|
||||
Task<List<unit_user_equ>> GetUserEquData(string userId, string code, List<string> noUeId);
|
||||
|
||||
@@ -17,6 +17,9 @@ public interface IGameGoodsService
|
||||
|
||||
Task<List<unit_user_goods>> GetUserGoodsData(string userId, List<string> code, List<string> noCode, string search, int page,
|
||||
int limit, RefAsync<int> total);
|
||||
|
||||
Task<List<unit_user_goods>> GetUserGoodsData(string userId, List<string> code, List<string> noCode, string search, int page,
|
||||
int limit, RefAsync<int> total,int DealType);
|
||||
|
||||
Task<List<unit_user_goods>> GetUserGoodsData(string userId, string code);
|
||||
Task<bool> UpdateUserGoods(string userId, int op, int goodsId, int count, string remark = "");
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
namespace Application.Domain;
|
||||
|
||||
public interface ITradeService
|
||||
{
|
||||
Task<bool> AddTrade(string userId, string code,string name, string propId, int count, long price,string content);
|
||||
Task<int> GetUserTradeCount(string userId);
|
||||
}
|
||||
Reference in New Issue
Block a user