mirror of
https://gitee.com/elegant_wings/dbd-meeting.git
synced 2025-06-21 13:39:37 +08:00
72 lines
1.6 KiB
Java
72 lines
1.6 KiB
Java
![]() |
package com.ics.admin.service;
|
||
|
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
import com.ics.admin.domain.IcsCustomerStaff;
|
||
|
import com.ics.system.domain.User;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* 企业员工Service接口
|
||
|
*
|
||
|
* @author ics
|
||
|
* @date 2024-02-19
|
||
|
*/
|
||
|
public interface IIcsCustomerStaffService extends IService<IcsCustomerStaff> {
|
||
|
/**
|
||
|
* 查询企业员工
|
||
|
*
|
||
|
* @param id 企业员工ID
|
||
|
* @return 企业员工
|
||
|
*/
|
||
|
IcsCustomerStaff selectIcsCustomerStaffById(Long id);
|
||
|
|
||
|
/**
|
||
|
* 查询企业员工列表
|
||
|
*
|
||
|
* @param icsCustomerStaff 企业员工
|
||
|
* @return 企业员工集合
|
||
|
*/
|
||
|
List<IcsCustomerStaff> selectIcsCustomerStaffList(IcsCustomerStaff icsCustomerStaff);
|
||
|
|
||
|
/**
|
||
|
* 新增企业员工
|
||
|
*
|
||
|
* @param icsCustomerStaff 企业员工
|
||
|
* @return 结果
|
||
|
*/
|
||
|
int insertIcsCustomerStaff(IcsCustomerStaff icsCustomerStaff);
|
||
|
|
||
|
/**
|
||
|
* 修改企业员工
|
||
|
*
|
||
|
* @param icsCustomerStaff 企业员工
|
||
|
* @return 结果
|
||
|
*/
|
||
|
int updateIcsCustomerStaff(IcsCustomerStaff icsCustomerStaff);
|
||
|
|
||
|
/**
|
||
|
* 批量删除企业员工
|
||
|
*
|
||
|
* @param ids 需要删除的数据ID
|
||
|
* @return 结果
|
||
|
*/
|
||
|
int deleteIcsCustomerStaffByIds(String ids);
|
||
|
|
||
|
/**
|
||
|
* 删除企业员工信息
|
||
|
*
|
||
|
* @param id 企业员工ID
|
||
|
* @return 结果
|
||
|
*/
|
||
|
int deleteIcsCustomerStaffById(Long id);
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 检查手机号码是否唯一
|
||
|
* @param icsCustomerStaff
|
||
|
* @return
|
||
|
*/
|
||
|
String checkMobileUnique(IcsCustomerStaff icsCustomerStaff);
|
||
|
}
|