12345678910111213141516171819202122232425262728293031 |
- package com.hssx.cloudmodel.service;
- import com.hssx.cloudmodel.entity.Factory;
- import com.hssx.cloudmodel.entity.Project;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.hssx.cloudmodel.entity.User;
- import com.hssx.cloudmodel.util.HttpRespMsg;
- import com.hssx.cloudmodel.util.PageUtil;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author 吴涛涛
- * @since 2019-07-27
- */
- public interface ProjectService extends IService<Project> {
- HttpRespMsg addAndUpdateProject(Project project, Integer flag, User user,String userIds,String customerCompanyIds,String customerCompanyNames);
- HttpRespMsg handOutProject(Project project, String userIds);
- HttpRespMsg getList(String keyName,PageUtil page,User currentUser);
- HttpRespMsg getUserByCompanyIdOrSubordinateType(User user);
- HttpRespMsg getProjectDetail(Project project);
- HttpRespMsg getUserListByCompanyIds(String companyIds,Integer adminId);
- }
|