| | |
| | | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.store.StoreAttrDto; |
| | | import com.java110.po.store.StoreAttrPo; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | * @Version 1.0 |
| | | * add by wuxw 2019/4/24 |
| | | **/ |
| | | @FeignClient(name = "store-service", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "${java110.store-service}", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/storeAttrApi") |
| | | public interface IStoreAttrInnerServiceSMO { |
| | | |
| | |
| | | */ |
| | | @RequestMapping(value = "/queryStoreAttrs", method = RequestMethod.POST) |
| | | List<StoreAttrDto> queryStoreAttrs(@RequestBody StoreAttrDto storeAttrDto); |
| | | /** |
| | | * <p>查询小区楼信息</p> |
| | | * |
| | | * |
| | | * @param storeAttrPo 数据对象分享 |
| | | * @return StoreAttrDto 对象数据 |
| | | */ |
| | | @RequestMapping(value = "/saveStoreAttrInfoInstance", method = RequestMethod.POST) |
| | | int saveStoreAttrInfoInstance(@RequestBody StoreAttrPo storeAttrPo); |
| | | /** |
| | | * <p>查询小区楼信息</p> |
| | | * |
| | | * |
| | | * @param storeAttrPo 数据对象分享 |
| | | * @return StoreAttrDto 对象数据 |
| | | */ |
| | | @RequestMapping(value = "/saveStoreAttrInfo", method = RequestMethod.POST) |
| | | int saveStoreAttrInfo(@RequestBody StoreAttrPo storeAttrPo); |
| | | /** |
| | | * <p>查询小区楼信息</p> |
| | | * |
| | | * |
| | | * @param storeAttrPo 数据对象分享 |
| | | * @return StoreAttrDto 对象数据 |
| | | */ |
| | | @RequestMapping(value = "/updateStoreAttrInfoInstance", method = RequestMethod.POST) |
| | | int updateStoreAttrInfoInstance(@RequestBody StoreAttrPo storeAttrPo); |
| | | |
| | | /** |
| | | * 查询<p>小区楼</p>总记录数 |