17 lines
377 B
C#
Raw Normal View History

2025-07-04 10:47:18 +08:00
using MyCode.Project.Domain.Message.Response.Common;
2025-07-04 09:50:02 +08:00
using System.Collections.Generic;
namespace MyCode.Project.Services
{
public interface IItemListService
{
List<ItemResult> GetMemberTypeList();
List<ItemResult> GetPurchasingBehaviorList();
List<ItemResult> GetSheetTypeList();
List<ItemResult> GetPlatformSourceList();
}
}