!提交代码
This commit is contained in:
26
WCS.BLL/Services/IService/IMatBaseInfoService.cs
Normal file
26
WCS.BLL/Services/IService/IMatBaseInfoService.cs
Normal file
@ -0,0 +1,26 @@
|
||||
|
||||
using WCS.BLL.DbModels;
|
||||
using WCS.DAL.AuthDbModel;
|
||||
using WCS.Model;
|
||||
using WCS.Model.ApiModel;
|
||||
using WCS.Model.ApiModel.MatBaseInfo;
|
||||
using WCS.Model.ApiModel.User;
|
||||
|
||||
namespace WCS.BLL.Services.IService
|
||||
{
|
||||
|
||||
public interface IMatBaseInfoService
|
||||
{
|
||||
public Task<PageQueryResponse<MatBaseInfo>> getMatBaseInfo(GetMatBaseInfoRequest request);
|
||||
|
||||
public Task<PageQueryResponse<MatBaseInfo>> exportMatBaseInfo(GetMatBaseInfoRequest request);
|
||||
|
||||
public Task<ResponseCommon<List<string>>> importMatBaseInfo(List<MatBaseInfoImportModel> lists,string userName,string deviceType);
|
||||
|
||||
public Task<ResponseCommon<object>> addOrUpdateMatBaseInfo(AddMatBaseInfoRequest<MatBaseInfo> request);
|
||||
|
||||
public Task<ResponseCommon<object>> deleteMatBaseInfo(DeleteMatBaseInfosRequest request);
|
||||
|
||||
public Task<ResponseCommon<List<string>>> getMatCodeList(GetMatCodeListRequest request);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user