namespace Application.Domain; public interface IGameGoodsService { #region 道具资源 Task GetGoodsInfo(int goodsId); Task GetGoodsContent(int goodsId); #endregion #region 个人道具 Task GetUserGoodsInfo(string ugId); Task GetUserGoodsInfo(string userId, int goodsId); Task GetUserGoodsCount(string userId, int goodsId); Task> GetUserGoodsData(string userId, List code, string search, int page, int limit, RefAsync total); Task UpdateUserGoods(string userId, int op, int goodsId, int count, string remark = ""); #endregion }