Package com.elitesland.ystdms.sys.feign
Interface SysOuSealFeign
@FeignClient(name="${yst.service.system:yst-dms2-newsys}",
path="/api/v1/sys/ou-seal",
contextId="sysOuSealFeign",
primary=false)
public interface SysOuSealFeign
公司用章主信息 Feign 接口
-
Method Summary
Modifier and TypeMethodDescriptiongetListByOuId(UUID ouId) 按公司主信息ID获取用章列表getOneById(UUID id) 按主键获取公司用章主信息
-
Method Details
-
getOneById
按主键获取公司用章主信息- Parameters:
id- 主键ID- Returns:
- 公司用章主信息
-
getListByOuId
@GetMapping("/ou/{ouId}") ApiResult<List<SysOuSealDTO>> getListByOuId(@PathVariable("ouId") UUID ouId) 按公司主信息ID获取用章列表- Parameters:
ouId- 公司主信息ID- Returns:
- 用章列表
-