Files
2025-07-04 11:09:51 +08:00

17 lines
377 B
C#

using MyCode.Project.Domain.Message.Response.Common;
using System.Collections.Generic;
namespace MyCode.Project.Services
{
public interface IItemListService
{
List<ItemResult> GetMemberTypeList();
List<ItemResult> GetPurchasingBehaviorList();
List<ItemResult> GetSheetTypeList();
List<ItemResult> GetPlatformSourceList();
}
}