123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using IoTIntegrationPlatform.Model.common;
- using IoTIntegrationPlatform.Model.Model;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace IoTIntegrationPlatform.Interface
- {
- public interface ISystemService
- {
- /// <summary>
- /// 获取客户信息
- /// </summary>
- /// <param name="customerId"></param>
- /// <param name="name"></param>
- /// <param name="code"></param>
- /// <param name="account"></param>
- /// <returns></returns>
- CustomerInfo GetCustomerInfo(int customerId, string name, string code, string account);
- /// <summary>
- /// 获取客户列表
- /// </summary>
- /// <param name="parm"></param>
- /// <param name="page"></param>
- /// <returns></returns>
- List<CustomerInfo> GetCustomerList(BaseParm parm, ref int page);
- /// <summary>
- /// 添加客户信息
- /// </summary>
- /// <param name="model"></param>
- /// <returns></returns>
- bool AddCustomer(CustomerInfo model);
- /// <summary>
- /// 编辑客户
- /// </summary>
- /// <param name="model"></param>
- /// <returns></returns>
- bool UpdatedCustomer(CustomerInfo model);
- /// <summary>
- /// 修改客户密码
- /// </summary>
- /// <param name="model"></param>
- /// <returns></returns>
- bool UpdateCustomerPassWord(CustomerInfo model);
- /// <summary>
- /// 删除客户
- /// </summary>
- /// <param name="parm"></param>
- /// <returns></returns>
- bool DeleteCustomer(BaseParm parm);
- }
- }
|