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
{
///
/// 客户信息service接口
///
public interface IBaseCustomService : IBaseService
{
PagedInfo GetList(BaseCustomQueryDto parm);
BaseCustom GetInfo(int Id);
BaseCustom AddBaseCustom(BaseCustom parm);
int UpdateBaseCustom(BaseCustom parm);
}
}