12345678910 |
- using System.Threading.Tasks;
- using GxPress.Result;
- namespace GxPress.Service.Interface.CommonService
- {
- public interface ICommonService : IService
- {
- Task<CollectionContentJsonData> StructCollectionData(int collectionDataId, int collectionType, int sourceUserId, bool isReturn = false);
- }
- }
|