提交
This commit is contained in:
24
DOAN.Service/MES/Base/IService/IBaseCustomService.cs
Normal file
24
DOAN.Service/MES/Base/IService/IBaseCustomService.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using DOAN.Model;
|
||||
using DOAN.Model.Dto;
|
||||
using DOAN.Model.MES.base_;
|
||||
using DOAN.Model.MES.base_.Dto;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace DOAN.Service.MES.base_.IService
|
||||
{
|
||||
/// <summary>
|
||||
/// 客户信息service接口
|
||||
/// </summary>
|
||||
public interface IBaseCustomService : IBaseService<BaseCustom>
|
||||
{
|
||||
PagedInfo<BaseCustomDto> GetList(BaseCustomQueryDto parm);
|
||||
|
||||
BaseCustom GetInfo(int Id);
|
||||
|
||||
BaseCustom AddBaseCustom(BaseCustom parm);
|
||||
|
||||
int UpdateBaseCustom(BaseCustom parm);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user