| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- package com.zhongzheng.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.zhongzheng.common.model.TableDataInfo;
- import com.zhongzheng.domian.SysCustomerSea;
- import com.zhongzheng.domian.SysUser;
- /**
- * 菜单 业务层
- *
- * @author zhongzheng
- */
- public interface ISysCustomerSeaService extends IService<SysCustomerSea> {
- /**
- * 根据企业条件查询分页列表
- *
- * @param entity 条件
- * @return 菜单列表
- */
- public TableDataInfo<SysCustomerSea> selectCustomerSeaList(SysCustomerSea entity);
- public SysCustomerSea selectCustomerSeaById(long id);
- public SysCustomerSea selectCustomerSeaByName(String name);
- public int insertCustomerSea(SysCustomerSea sysCustomerSea);
- public int updateCustomerSea(SysCustomerSea sysCustomerSea);
- public int deleteCustomerSeaById(long id);
- /**
- * 公海领取客户
- * @param seaIds 公海ID,多个以,号隔开
- * @param sysUser 登录对象
- * @return 返回成功 1
- */
- public int claimCustomers(String seaIds, SysUser sysUser);
- /**
- *
- * @param entity
- * @return
- */
- public TableDataInfo<SysCustomerSea> selectList(SysCustomerSea entity);
- }
|