更新代码
This commit is contained in:
parent
0014f3cff5
commit
424bbab7cc
@ -0,0 +1,53 @@
|
|||||||
|
package cn.iocoder.yudao.module.app.company.admin;
|
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.common.pojo.CommonResult;
|
||||||
|
import cn.iocoder.yudao.module.company.entity.Company;
|
||||||
|
import cn.iocoder.yudao.module.company.service.CompanyService;
|
||||||
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||||
|
import io.swagger.v3.oas.annotations.Operation;
|
||||||
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||||
|
import org.springframework.validation.annotation.Validated;
|
||||||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestParam;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
|
||||||
|
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用于需要获取企业信息的地方
|
||||||
|
* 如维修的附近修理厂
|
||||||
|
*
|
||||||
|
* @author 小李
|
||||||
|
* @date 14:04 2024/9/23
|
||||||
|
**/
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("/api/base/company")
|
||||||
|
@Tag(name = "API - BASE 企业管理")
|
||||||
|
@Validated
|
||||||
|
public class CompanyAPI {
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private CompanyService companyService;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 通过服务名称查能提供服务的企业 分页
|
||||||
|
*
|
||||||
|
* @author 小李
|
||||||
|
* @date 14:09 2024/9/23
|
||||||
|
* @param company 企业对象,主要是serverCodes
|
||||||
|
* @param pageNO 页码
|
||||||
|
* @param pageSize 条数
|
||||||
|
**/
|
||||||
|
@GetMapping("/page")
|
||||||
|
@Operation(summary = "通过服务名称查能提供服务的企业 分页")
|
||||||
|
public CommonResult<?> getCompanyPageByServer(Company company,
|
||||||
|
@RequestParam(value = "pageNo", defaultValue = "1") Integer pageNO,
|
||||||
|
@RequestParam(value = "pageSize", defaultValue = "10")Integer pageSize){
|
||||||
|
Page<Company> page = new Page<>(pageNO, pageSize);
|
||||||
|
return success(companyService.getCompanyPageByServer(company, page));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,42 @@
|
|||||||
|
package cn.iocoder.yudao.module.app.conf.admin;
|
||||||
|
|
||||||
|
import cn.iocoder.yudao.framework.common.pojo.CommonResult;
|
||||||
|
import cn.iocoder.yudao.module.conf.entity.BaseType;
|
||||||
|
import cn.iocoder.yudao.module.conf.service.BaseTypeService;
|
||||||
|
import io.swagger.v3.oas.annotations.Operation;
|
||||||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
|
||||||
|
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 用于查看需要查dl_base_type的地方
|
||||||
|
* 如维修预约需要选服务
|
||||||
|
*
|
||||||
|
* @author 小李
|
||||||
|
* @date 14:21 2024/9/23
|
||||||
|
**/
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("/api/base/type")
|
||||||
|
public class BaseTypeAPI {
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private BaseTypeService baseTypeService;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查看列表,或服务、或项目、或配件
|
||||||
|
* 根据需要的type和对应的企业
|
||||||
|
*
|
||||||
|
* @author 小李
|
||||||
|
* @date 14:29 2024/9/23
|
||||||
|
* @param baseType 查询条件
|
||||||
|
**/
|
||||||
|
@GetMapping("/list")
|
||||||
|
@Operation(summary = "查看列表 不分页")
|
||||||
|
public CommonResult<?> getListByTypeAndCorpId(BaseType baseType) {
|
||||||
|
return success(baseTypeService.getListByTypeAndCorpId(baseType));
|
||||||
|
}
|
||||||
|
}
|
@ -26,4 +26,13 @@ public interface CompanyMapper extends BaseMapper<Company>{
|
|||||||
* @date 10:15 2024/8/14
|
* @date 10:15 2024/8/14
|
||||||
**/
|
**/
|
||||||
List<CompanyRespVO> getCompanyAndManager();
|
List<CompanyRespVO> getCompanyAndManager();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 通过服务名称查能提供服务的企业 分页
|
||||||
|
*
|
||||||
|
* @author 小李
|
||||||
|
* @date 14:09 2024/9/23
|
||||||
|
* @param company 企业对象,主要是serverCodes
|
||||||
|
**/
|
||||||
|
IPage<Company> getCompanyPageByServer(@Param("map") Company company, Page<Company> page);
|
||||||
}
|
}
|
@ -11,6 +11,7 @@ import java.util.List;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 企业信息表(每个租户的下属企业信息);(dl_company)表服务接口
|
* 企业信息表(每个租户的下属企业信息);(dl_company)表服务接口
|
||||||
|
*
|
||||||
* @author : http://www.chiner.pro
|
* @author : http://www.chiner.pro
|
||||||
* @date : 2024-7-31
|
* @date : 2024-7-31
|
||||||
*/
|
*/
|
||||||
@ -25,32 +26,45 @@ public interface CompanyService extends IService<Company> {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 新增企业信息
|
* 新增企业信息
|
||||||
|
*
|
||||||
|
* @param companyRespVO 企业对象
|
||||||
* @author vinjor-M
|
* @author vinjor-M
|
||||||
* @date 9:56 2024/8/2
|
* @date 9:56 2024/8/2
|
||||||
* @param companyRespVO 企业对象
|
|
||||||
**/
|
**/
|
||||||
void saveDataObj(CompanyRespVO companyRespVO);
|
void saveDataObj(CompanyRespVO companyRespVO);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 更新企业信息
|
* 更新企业信息
|
||||||
|
*
|
||||||
|
* @param companyRespVO 企业对象
|
||||||
* @author vinjor-M
|
* @author vinjor-M
|
||||||
* @date 9:56 2024/8/2
|
* @date 9:56 2024/8/2
|
||||||
* @param companyRespVO 企业对象
|
|
||||||
**/
|
**/
|
||||||
void updateDataObj(CompanyRespVO companyRespVO);
|
void updateDataObj(CompanyRespVO companyRespVO);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 删除企业
|
* 删除企业
|
||||||
|
*
|
||||||
|
* @param id 企业id
|
||||||
* @author vinjor-M
|
* @author vinjor-M
|
||||||
* @date 16:33 2024/8/3
|
* @date 16:33 2024/8/3
|
||||||
* @param id 企业id
|
|
||||||
**/
|
**/
|
||||||
void removeDataObj(String id);
|
void removeDataObj(String id);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取所有企业及对应的管理信息
|
* 获取所有企业及对应的管理信息
|
||||||
|
*
|
||||||
* @author 小李
|
* @author 小李
|
||||||
* @date 10:15 2024/8/14
|
* @date 10:15 2024/8/14
|
||||||
**/
|
**/
|
||||||
List<CompanyRespVO> getCompanyAndManager();
|
List<CompanyRespVO> getCompanyAndManager();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 通过服务名称查能提供服务的企业 分页
|
||||||
|
*
|
||||||
|
* @author 小李
|
||||||
|
* @date 14:09 2024/9/23
|
||||||
|
* @param company 企业对象,主要是serverCodes
|
||||||
|
**/
|
||||||
|
IPage<Company> getCompanyPageByServer(Company company, Page<Company> page);
|
||||||
}
|
}
|
@ -170,4 +170,16 @@ public class CompanyServiceImpl extends ServiceImpl<CompanyMapper, Company> impl
|
|||||||
public List<CompanyRespVO> getCompanyAndManager(){
|
public List<CompanyRespVO> getCompanyAndManager(){
|
||||||
return baseMapper.getCompanyAndManager();
|
return baseMapper.getCompanyAndManager();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 通过服务名称查能提供服务的企业 分页
|
||||||
|
*
|
||||||
|
* @author 小李
|
||||||
|
* @date 14:09 2024/9/23
|
||||||
|
* @param company 企业对象,主要是serverCodes
|
||||||
|
**/
|
||||||
|
@Override
|
||||||
|
public IPage<Company> getCompanyPageByServer(Company company, Page<Company> page){
|
||||||
|
return baseMapper.getCompanyPageByServer(company, page);
|
||||||
|
}
|
||||||
}
|
}
|
@ -27,6 +27,13 @@ public interface BaseTypeMapper extends BaseMapper<BaseType> {
|
|||||||
**/
|
**/
|
||||||
List<BaseTypeRespVO> queryList(@Param("entity") BaseTypeListReqVO entity);
|
List<BaseTypeRespVO> queryList(@Param("entity") BaseTypeListReqVO entity);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查看列表,或服务、或项目、或配件
|
||||||
|
* 根据需要的type和对应的企业
|
||||||
|
*
|
||||||
|
* @author 小李
|
||||||
|
* @date 14:29 2024/9/23
|
||||||
|
* @param baseType 查询条件
|
||||||
|
**/
|
||||||
|
List<BaseType> getListByTypeAndCorpId(@Param("map") BaseType baseType);
|
||||||
}
|
}
|
@ -51,4 +51,13 @@ public interface BaseTypeService extends IService<BaseType> {
|
|||||||
**/
|
**/
|
||||||
List<BaseTypeRespVO> getBaseTypeList(BaseTypeListReqVO listReqVO);
|
List<BaseTypeRespVO> getBaseTypeList(BaseTypeListReqVO listReqVO);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查看列表,或服务、或项目、或配件
|
||||||
|
* 根据需要的type和对应的企业
|
||||||
|
*
|
||||||
|
* @author 小李
|
||||||
|
* @date 14:29 2024/9/23
|
||||||
|
* @param baseType 查询条件
|
||||||
|
**/
|
||||||
|
List<BaseType> getListByTypeAndCorpId(BaseType baseType);
|
||||||
}
|
}
|
@ -138,4 +138,17 @@ public class BaseTypeServiceImpl extends ServiceImpl<BaseTypeMapper, BaseType> i
|
|||||||
return baseTypeMapper.queryList(listReqVO);
|
return baseTypeMapper.queryList(listReqVO);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查看列表,或服务、或项目、或配件
|
||||||
|
* 根据需要的type和对应的企业
|
||||||
|
*
|
||||||
|
* @author 小李
|
||||||
|
* @date 14:29 2024/9/23
|
||||||
|
* @param baseType 查询条件
|
||||||
|
**/
|
||||||
|
@Override
|
||||||
|
public List<BaseType> getListByTypeAndCorpId(BaseType baseType){
|
||||||
|
return baseTypeMapper.getListByTypeAndCorpId(baseType);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -35,4 +35,15 @@
|
|||||||
dbt.id
|
dbt.id
|
||||||
order by dbt.sort asc
|
order by dbt.sort asc
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
<select id="getListByTypeAndCorpId" resultType="cn.iocoder.yudao.module.conf.entity.BaseType">
|
||||||
|
select * from dl_base_type dbt
|
||||||
|
where dbt.deleted = '0'
|
||||||
|
<if test="map.type != null and map.type != ''">
|
||||||
|
and dbt.type = #{map.type}
|
||||||
|
</if>
|
||||||
|
<if test="map.tenantId != null and map.tenantId != ''">
|
||||||
|
and dbt.corp_id = #{map.corpId}
|
||||||
|
</if>
|
||||||
|
</select>
|
||||||
</mapper>
|
</mapper>
|
@ -44,4 +44,10 @@
|
|||||||
from base_company c
|
from base_company c
|
||||||
inner join system_users u on c.login_account = u.username
|
inner join system_users u on c.login_account = u.username
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
<select id="getCompanyPageByServer" resultType="cn.iocoder.yudao.module.company.entity.Company">
|
||||||
|
select *
|
||||||
|
from base_company
|
||||||
|
where FIND_IN_SET(#{map.serviceCodes}, service_codes) > 0
|
||||||
|
</select>
|
||||||
</mapper>
|
</mapper>
|
Loading…
Reference in New Issue
Block a user