25 lines
550 B
C#
25 lines
550 B
C#
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);
|
|
|
|
}
|
|
}
|