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 { /// /// 获取客户信息 /// /// /// /// /// /// CustomerInfo GetCustomerInfo(int customerId, string name, string code, string account); /// /// 获取客户列表 /// /// /// /// List GetCustomerList(BaseParm parm, ref int page); /// /// 添加客户信息 /// /// /// bool AddCustomer(CustomerInfo model); /// /// 编辑客户 /// /// /// bool UpdatedCustomer(CustomerInfo model); /// /// 修改客户密码 /// /// /// bool UpdateCustomerPassWord(CustomerInfo model); /// /// 删除客户 /// /// /// bool DeleteCustomer(BaseParm parm); } }