29 lines
825 B
C#
29 lines
825 B
C#
using MyCode.Project.Domain.Message.Act.Common;
|
|
using MyCode.Project.Domain.Message.Request.LxmZHMDReport;
|
|
using MyCode.Project.Domain.Message.Response.Bfy;
|
|
using MyCode.Project.Domain.Message.Response.Common;
|
|
using MyCode.Project.Domain.Message.Response.LxmZHMDReport;
|
|
using MyCode.Project.Domain.Message.Response.User;
|
|
using MyCode.Project.Domain.Model;
|
|
using MyCode.Project.Infrastructure.Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCode.Project.Services
|
|
{
|
|
public interface IItemListService
|
|
{
|
|
List<ItemResult> GetMemberTypeList();
|
|
|
|
List<ItemResult> GetPurchasingBehaviorList();
|
|
|
|
List<ItemResult> GetSheetTypeList();
|
|
|
|
List<ItemResult> GetPlatformSourceList();
|
|
}
|
|
}
|